Merge with master #39

Merged
heinzel merged 61 commits from master into production 2020-12-22 19:45:12 +01:00
Showing only changes of commit f3509d3a61 - Show all commits

View File

@@ -690,7 +690,7 @@ class EventCreateView(EventPermissionMixin, generic.FormView):
event.editor = self.request.user
# Check for double submission (seems to happens accidentally if smartphone user reload the submit page)
possible_doublets = models.Event.objects.filter(owner=event.editor,
possible_doublets = models.Event.objects.filter(owner=event.owner,
title=event.title,
first_day=event.first_day)
if possible_doublets.exists():