diff --git a/src/agenda_culturel/forms.py b/src/agenda_culturel/forms.py index f6fe7d4..4d5a8bb 100644 --- a/src/agenda_culturel/forms.py +++ b/src/agenda_culturel/forms.py @@ -42,7 +42,7 @@ class EventForm(ModelForm): class Meta: model = Event - exclude = ["possibly_duplicated", "imported_date", "modified_date"] + exclude = ["possibly_duplicated", "imported_date", "modified_date", "moderated_date"] widgets = { 'start_day': TextInput(attrs={'type': 'date', 'onchange': 'update_datetimes(event);', "onfocus": "this.oldvalue = this.value;"}), 'start_time': TextInput(attrs={'type': 'time', 'onchange': 'update_datetimes(event);', "onfocus": "this.oldvalue = this.value;"}),