Sorted roles by committees and some basic layout

This commit is contained in:
Elias
2018-03-02 00:31:10 +02:00
parent 7bc277a978
commit 55bcc78670
5 changed files with 72 additions and 54 deletions
+9
View File
@@ -243,6 +243,15 @@ class Committee(models.Model):
Has many Roles found under variable roles
"""
class Meta:
"""Meta class for Committee class."""
verbose_name = _('Committee')
verbose_name_plural = _('Committees')
def __str__(self):
return _('Committee: {}').format(self.name)
name = models.CharField(max_length=255)