diff --git a/forms.py b/forms.py index c323c9c..faa3268 100644 --- a/forms.py +++ b/forms.py @@ -64,7 +64,7 @@ the list should be the wished name of the fieldset, the following the fields that should be included in the fieldset. """ - layout = [["New Domain","mail_host", "web_host", "description",]] + layout = [["","mail_host", "web_host", "description",]] class ListNew(FieldsetForm): diff --git a/templates/mailman-django/domain_index.html b/templates/mailman-django/domain_index.html index 2e2bdbb..15e1a61 100644 --- a/templates/mailman-django/domain_index.html +++ b/templates/mailman-django/domain_index.html @@ -17,7 +17,7 @@
  • {% trans "New Domain" %}
  • {% if not domain == "unregistered Domain" %}
  • - {% trans "Delete Domain" %}
    +
    {% trans "Delete Domain" %}
    {{domain}}
  • @@ -28,13 +28,10 @@ {% block smallBoxLeft %} {% for domain in domains %}
    -
    {{ domain.contact_address }}
    - +
    {{ domain.contact_address }} ({{ domain.base_url }})
    + {% if domain.description %} + {{ domain.description }} + {% endif %}
    {% endfor %} {% endblock %}