-
Notifications
You must be signed in to change notification settings - Fork 13
Hint 2 spoiler
LisanneWeidmann edited this page Nov 23, 2022
·
3 revisions
Find the Profile
model (it lives in concrexit/website/members/models
) and add an IntegerField
. It should closely resemble this piece of code:
.......
class Profile(models.Model):
"""This class holds extra information about a member"""
.......
# ---- Personal information ------
programme = models.CharField(
max_length=20,
choices=PROGRAMME_CHOICES,
verbose_name=_('Study programme'),
blank=True,
null=True,
)
new_field = models.IntegerField()
.......