6 lines
114 B
Python
6 lines
114 B
Python
from .models import *
|
|
|
|
def get_sections():
|
|
|
|
sections = Section.objects.filter(enable=True)
|
|
return sections |