Sorted roles by committees and some basic layout
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user