1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-20 17:41:55 +02:00

add simple docstrings

This commit is contained in:
Pierre-antoine Comby
2019-08-11 17:52:41 +02:00
parent 4a52272558
commit 13d67c26bf
3 changed files with 15 additions and 0 deletions

View File

@ -8,6 +8,9 @@ from django.utils.translation import gettext_lazy as _
class ActivityType(models.Model):
"""
Type of Activity, (e.g "Pot", "Soirée Club") and associated properties
"""
name = models.CharField(
verbose_name=_('name'),
max_length=255,
@ -28,6 +31,9 @@ class ActivityType(models.Model):
class Activity(models.Model):
"""
An IRL event organized by a club for others.
"""
name = models.CharField(
verbose_name=_('name'),
max_length=255,
@ -66,6 +72,9 @@ class Activity(models.Model):
class Guest(models.Model):
"""
People who are not current members of any clubs, and invited by someone who is a current member.
"""
activity = models.ForeignKey(
Activity,
on_delete=models.PROTECT,