equal
deleted
inserted
replaced
9 from .auth import GroupProfile |
9 from .auth import GroupProfile |
10 |
10 |
11 |
11 |
12 class Protocol(Model): |
12 class Protocol(Model): |
13 title = models.CharField(max_length=255, verbose_name=_('Protocol|title')) |
13 title = models.CharField(max_length=255, verbose_name=_('Protocol|title')) |
14 group_profile = models.OneToOneField( |
14 # group_profile = models.OneToOneField( |
15 GroupProfile, on_delete=models.CASCADE) |
15 # GroupProfile, on_delete=models.CASCADE) |
16 |
16 |
17 class Meta: |
17 class Meta: |
18 verbose_name = _('Protocol') |
18 verbose_name = _('Protocol') |
19 verbose_name_plural = _('Protocols') |
19 verbose_name_plural = _('Protocols') |
20 |
20 |