diff --git a/forms.py b/forms.py
index 48633f5..328b4f9 100644
--- a/forms.py
+++ b/forms.py
@@ -752,9 +752,7 @@
if settings:
for section in self.layout:
for option in section[1:]:
- #raise Exception(settings)
self.fields[option].initial = settings[option]
- #raise Exception(self.fields[option].initial)
class Meta:
diff --git a/static/mailman_django/css/basics.css b/static/mailman_django/css/basics.css
index 9a54524..c902c11 100644
--- a/static/mailman_django/css/basics.css
+++ b/static/mailman_django/css/basics.css
@@ -6,7 +6,6 @@
light_blue #cfdcec → rgba(207, 220, 236, 0.6)
blue #186aaf → rgba(24, 106, 175, 1)
dark_blue #40486f
-
**/
@media screen, projection {
@@ -150,5 +149,12 @@
}
+#message {
+ background-color:rgba(207, 220, 236, 0.6);
+ border:1px solid rgba(24, 106, 175, 1);
+ padding:3px;
+ border-radius:5px;
+}
+
@media screen and (max-width: 600px) {
}
diff --git a/templates/mailman-django/base.html b/templates/mailman-django/base.html
index 4df888a..b032398 100644
--- a/templates/mailman-django/base.html
+++ b/templates/mailman-django/base.html
@@ -36,6 +36,9 @@
+ {% if message %}
+ {{ message }}
+ {% endif %}
{% block content %}{% endblock %}
diff --git a/templates/mailman-django/domains.html b/templates/mailman-django/domains.html
index 36dd3bc..6f2cc4c 100644
--- a/templates/mailman-django/domains.html
+++ b/templates/mailman-django/domains.html
@@ -4,7 +4,6 @@
{% block content %}
{% trans "Add a new Domain" %}
-
{% trans "Logout" %}
diff --git a/templates/mailman-django/list_selector.html b/templates/mailman-django/list_selector.html
index cafd4ab..93f7f8a 100644
--- a/templates/mailman-django/list_selector.html
+++ b/templates/mailman-django/list_selector.html
@@ -2,6 +2,7 @@
{% block selector %}
+{%if lists %}
-
+{%endif%}
{% endblock %}
diff --git a/templates/mailman-django/lists/settings.html b/templates/mailman-django/lists/settings.html
index d882f8c..4ee045c 100644
--- a/templates/mailman-django/lists/settings.html
+++ b/templates/mailman-django/lists/settings.html
@@ -20,11 +20,6 @@
{% trans "This page visualizes all list settings. Currently the page is not connected to the rest server so the settings will not be saved when changing them. However, this gives an idea of what the settings page could look like." %}
-
-{% if message %}
- {{ message }}
-{% endif %}
-