From 431677576603b58c42fc488f174ef0254a7a430c Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Mon, 21 Jan 2013 12:00:02 -0600 Subject: Switch to a fluid layout --- hyperkitty/templates/thread.html | 92 ++++++++++++++++++++++++---------------- 1 file changed, 55 insertions(+), 37 deletions(-) (limited to 'hyperkitty/templates/thread.html') diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html index dd17cb2..3fa401b 100644 --- a/hyperkitty/templates/thread.html +++ b/hyperkitty/templates/thread.html @@ -11,46 +11,64 @@ {% block content %} -
- {% for thread in neighbors %} - {% if thread %} - {{ thread.subject|strip_subject:mlist|truncatesmart:"22" }} - {% endif %} - {% endfor %} -

{{ subject }}

-
+
+ +{% include 'threads/month_list.html' %} + +
- {% include 'threads/right_col.html' %} - - -
- - - {% include 'messages/first_email.html' %} - - -

- {% if sort_mode == "date" %} - Show replies by thread - {% else %} - Show replies by date - {% endif %} -

- - {% for email in replies %} -
- - {% include 'messages/message.html' %} - +
+ {% for thread in neighbors %} + {% if thread %} + {{ thread.subject|strip_subject:mlist|truncatesmart:"22" }} + {% endif %} + {% endfor %} +

{{ subject }}

- {% endfor %} -
+
+ +
+ +
+ + + {% include 'messages/first_email.html' %} + + +

+ {% if sort_mode == "date" %} + Show replies by thread + {% else %} + Show replies by date + {% endif %} +

+ + {% for email in replies %} +
+ + {% include 'messages/message.html' %} + +
+ {% endfor %} + +
+
+ +
+ {% include 'threads/right_col.html' %} +
+ +
+ +
+ +
{% endblock %} -- cgit