diff --git a/source/templates/base.html b/source/templates/base.html index d507fc4..5644808 100644 --- a/source/templates/base.html +++ b/source/templates/base.html @@ -15,6 +15,26 @@ {% block body %}{% endblock %} + + + {{ extra_body_html|safe }} diff --git a/source/templates/index.html b/source/templates/index.html index 278fb32..7cc8eb2 100644 --- a/source/templates/index.html +++ b/source/templates/index.html @@ -21,49 +21,34 @@ User Count Chart - - - - - - - - +
+ Groups Overview -
- {% for group in groups %} - - - - - - {% endfor %} - -
GroupSubscribersDescription
- {{ group.name }} - {{ group.subscribers }} - {% if let Some(description) = group.description %} - {{ description }} - {% endif %} -
+ + + + + + + + + + + {% for group in groups %} + + + + + + {% endfor %} + +
GroupSubscribersDescription
+ {{ group.name }} + {{ group.subscribers }} + {% if let Some(description) = group.description %} + {{ description }} + {% endif %} +
+ - - {% endblock %}