From d458fb6dcdf464488e008c6eff316a5bcfc077b6 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Fri, 12 Jul 2013 13:00:29 +0200 Subject: Reorganize the overview page in columns --- hyperkitty/templates/overview.html | 67 +++++++++++++++----------------------- 1 file changed, 26 insertions(+), 41 deletions(-) (limited to 'hyperkitty/templates') diff --git a/hyperkitty/templates/overview.html b/hyperkitty/templates/overview.html index 065bfc9..4966a01 100644 --- a/hyperkitty/templates/overview.html +++ b/hyperkitty/templates/overview.html @@ -31,30 +31,15 @@

+
-

Recently active discussions

{% for thread in most_active_threads %} {% include "threads/summary_thread.html" with counter=forloop.counter %} {% endfor %}
-
-
-
-

Most active discussions

- {% for thread in top_threads %} - {% include "threads/summary_thread.html" with counter=forloop.counter %} - {% endfor %} -
-
- -
- -
- -
-
- -
-
-

Discussion by category

- {% for category, threads in threads_by_category.items %} -

{{ category.name|upper }} -

- {% for thread in threads %} - {% include "threads/summary_thread.html" %} - {% endfor %} - {% empty %} -

No category has been set this month (yet).

- {% endfor %} -
-
-
- -
- -

Most active posters

{% for poster in top_posters %} @@ -106,9 +68,32 @@
{% endfor %} +
+
+ +
+

Most active discussions

+ {% for thread in top_threads %} + {% include "threads/summary_thread.html" with counter=forloop.counter %} + {% endfor %} +
+ +
+

Discussion by category

+ {% for category, threads in threads_by_category.items %} +

{{ category.name|upper }} +

+ {% for thread in threads %} + {% include "threads/summary_thread.html" %} + {% endfor %} + {% empty %} +

No category has been set this month (yet).

+ {% endfor %} +
-
{% if top_author %}

Prominent discussion maker

@@ -136,8 +121,8 @@

Tag cloud

{% endif %} -
+
-- cgit