diff --git a/musician/models.py b/musician/models.py index 7544360..5b61e16 100644 --- a/musician/models.py +++ b/musician/models.py @@ -146,7 +146,8 @@ class MailService(OrchestraModel): class MailinglistService(OrchestraModel): api_name = 'mailinglist' - verbose_name = 'Mailing list' + verbose_name = _('Mailing list') + description = _('Litle description of what to be expected in this section to aid the user. Even a link to more help if there is one available.') fields = ('name', 'status', 'address_name', 'admin_email', 'configure') param_defaults = { 'name': None, diff --git a/musician/templates/musician/mailinglists.html b/musician/templates/musician/mailinglists.html index 031c33e..e24ea7a 100644 --- a/musician/templates/musician/mailinglists.html +++ b/musician/templates/musician/mailinglists.html @@ -3,10 +3,17 @@ {% block content %} -
Little description of what to be expected...
+{{ service.description }}
-Name | @@ -20,8 +27,8 @@ {% for resource in object_list %}||||||
---|---|---|---|---|---|---|
{{ resource.name }} | -{{ resource.status }} | -{{ resource.address_name}}@{{ resource.address_domain.name }} | +{{ resource.status|capfirst }} | +{{ resource.address_name}} | {{ resource.admin_email }} | Mailtrain |