1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| from django import forms
|
| from .models import ProblemGroup
|
|
| class ProblemGroupForm(forms.ModelForm):
| class Meta:
| model = ProblemGroup
| fields = (
| "title",
| "problem",
| "amount",
| )
|
| # widgets={ 'date': 'widget_name',}
|
| def __init__(self, *args, **kwargs):
| super(ProblemGroupForm, self).__init__(*args, **kwargs)
|
|