diff --git a/context_processors.py b/context_processors.py index b048163..78aea92 100644 --- a/context_processors.py +++ b/context_processors.py @@ -9,7 +9,7 @@ """ domain_lists = [] message = "" - if "HTTP_HOST" in request.META.keys() : + if "HTTP_HOST" in request.META.keys() :#TODO only lists of current domains if possible #get the URL web_host = request.META["HTTP_HOST"].split(":")[0] #querry the Domain object diff --git a/forms.py b/forms.py index b326224..298bb1a 100644 --- a/forms.py +++ b/forms.py @@ -172,7 +172,7 @@ layout = [["List Details", "listname", "mail_host", "list_owner", "description", "list_type"], ["Available Languages", "languages"]] -class ListSubscribe(forms.Form): +class ListSubscribe(FieldsetForm): """Form fields to join an existing list. """ listname = forms.EmailField( @@ -207,7 +207,7 @@ """ layout = [["Subscribe", "email","real_name"]] -class ListUnsubscribe(forms.Form): +class ListUnsubscribe(FieldsetForm): """Form fields to leave an existing list. """ listname = forms.EmailField( diff --git a/templates/mailman-django/lists/index.html b/templates/mailman-django/lists/index.html index 0cc8657..50e6e49 100644 --- a/templates/mailman-django/lists/index.html +++ b/templates/mailman-django/lists/index.html @@ -17,7 +17,7 @@ {{ list.real_name }} {{ list.fqdn_listname }} - {%trans "Info / Subscribe" %} + {%trans "Info / Subscribe" %} #TODO - LINK {%trans "Settings" %} diff --git a/templates/mailman-django/menu/administration.html b/templates/mailman-django/menu/administration.html index ecb39b4..49b3b75 100644 --- a/templates/mailman-django/menu/administration.html +++ b/templates/mailman-django/menu/administration.html @@ -20,12 +20,12 @@ {% if fqdn_listname %}
  • - + {% trans "Delete List #TODO:really delete dialog" %}
  • - + #TODO {% trans "Administrivia" %} diff --git a/templates/mailman-django/menu/subscriptions.html b/templates/mailman-django/menu/subscriptions.html index 55fc81a..ba9a90d 100644 --- a/templates/mailman-django/menu/subscriptions.html +++ b/templates/mailman-django/menu/subscriptions.html @@ -2,7 +2,7 @@ {% block menu_subscriptions %} {% if fqdn_listname %} - {% trans "Subscriptions" %} + {% trans "Subscriptions" %}