From f125be2549e5f4f04c8097b7305be2982ccff063 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Wed, 22 Nov 2017 17:39:44 -0500 Subject: Change Drivers to vendors in some locations. Remove description field for uploads, changed to filename. Still need to update template. --- app/dispatch/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/dispatch/forms.py') 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") -- cgit v1.2.3