Initial work on associating events with subhires

This commit is contained in:
2022-10-20 12:56:42 +01:00
parent 4449efcced
commit 948a41f43a
11 changed files with 447 additions and 746 deletions

View File

@@ -132,6 +132,7 @@ class SubhireForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['start_date'].widget.format = '%Y-%m-%d'
self.fields['end_date'].widget.format = '%Y-%m-%d'
class Meta: