Files
Aerbim/ServicesApp/funcs.py
2023-11-26 16:55:19 +03:00

6 lines
132 B
Python

from .models import *
def get_sections():
sections = Section.objects.filter(enable=True).order_by('order')
return sections