diff options
Diffstat (limited to 'app/dispatch/forms.py')
| -rw-r--r-- | app/dispatch/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/dispatch/forms.py b/app/dispatch/forms.py index feeda39..fc3f4f0 100644 --- a/app/dispatch/forms.py +++ b/app/dispatch/forms.py @@ -6,7 +6,7 @@ from dispatch.models import Paperwork class AddPaperworkForm(forms.ModelForm): class Meta: model = Paperwork - fields = ('description', 'document') + fields = ['document'] class InviteForm(forms.Form): first_name = forms.CharField(label="User's name") |
