1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-23 10:56:35 +02:00

add school field to guest

This commit is contained in:
quark
2025-03-25 17:39:31 +01:00
parent 60355196ce
commit 702ddb5679
10 changed files with 57 additions and 28 deletions

View File

@ -247,6 +247,11 @@ class Guest(models.Model):
verbose_name=_("first name"),
)
school = models.CharField(
max_length=255,
verbose_name=_("school"),
)
inviter = models.ForeignKey(
NoteUser,
on_delete=models.PROTECT,