12 lines
284 B
Python
12 lines
284 B
Python
from django import forms
|
|
|
|
from .models import Section, Period
|
|
|
|
|
|
class PeriodForm(forms.Form):
|
|
section = forms.ModelChoiceField(queryset=Section.objects.all())
|
|
period = forms.ModelChoiceField(queryset=None)
|
|
|
|
def __init__(self, data, *args, **kwargs):
|
|
pass
|
|
|