diff --git a/web/core/forms.py b/web/core/forms.py index 4cb5cb3..84777b6 100644 --- a/web/core/forms.py +++ b/web/core/forms.py @@ -3,12 +3,10 @@ from .models_ann import Announcement from django.forms import ModelForm, Textarea from django.utils import timezone - class ImportForm(forms.Form): file = forms.FileField(allow_empty_file=False) dry_run = forms.BooleanField(initial=True, required=False, help_text="Preview changes without saving") - class EntryForm(forms.Form): subject = forms.CharField(required=False) illustration = forms.CharField(required=False, widget=forms.Textarea)