From bf589c83719b8863a128e6f7529be0e52923ef09 Mon Sep 17 00:00:00 2001 From: kovacspe Date: Sat, 18 May 2024 22:55:20 +0200 Subject: [PATCH] Allow empty registration link (#383) --- 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()