From 49a8bd49b047465ae632e5c04384fa65c28600be Mon Sep 17 00:00:00 2001 From: kovacspe Date: Sat, 18 May 2024 19:30:05 +0200 Subject: [PATCH] Allow empty registration link --- competition/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/competition/models.py b/competition/models.py index 0a99732..bf91a69 100644 --- a/competition/models.py +++ b/competition/models.py @@ -166,6 +166,7 @@ class Meta: "competition.RegistrationLink", on_delete=models.SET_NULL, null=True, + blank=True ) objects = ActiveQuerySet.as_manager()