diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-12-10 12:25:38 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-12-10 12:25:38 +0100 |
commit | 0a8e5ee78fb231606a0b43f6688aca47e941d91c (patch) | |
tree | 6ca9f83c9706430d72224c928feeb41d5ef55d23 /hyperkitty/templates/thread.html | |
parent | c29c544ad61059f2360845b48f4f44b76687d153 (diff) | |
download | hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.tar.gz hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.tar.xz hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.zip |
Non-code changes (license texts, indentation, etc.)
Diffstat (limited to 'hyperkitty/templates/thread.html')
-rw-r--r-- | hyperkitty/templates/thread.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html index e2a0524..3ac059d 100644 --- a/hyperkitty/templates/thread.html +++ b/hyperkitty/templates/thread.html @@ -6,16 +6,16 @@ {% block content %} - <div class="thread-header"> - {% for thread in neighbors %} - {% if thread %} - <a class="thread-{% ifequal forloop.counter 1 %}older{% else %}newer{% endifequal %}" - href="{% url thread threadid=thread.thread_id, mlist_fqdn=list_address %}" - >{{ thread.subject|strip_subject:mlist|truncatesmart:"22" }}</a> - {% endif %} - {% endfor %} - <h1>{{ subject }}</h1> - </div> + <div class="thread-header"> + {% for thread in neighbors %} + {% if thread %} + <a class="thread-{% ifequal forloop.counter 1 %}older{% else %}newer{% endifequal %}" + href="{% url thread threadid=thread.thread_id, mlist_fqdn=list_address %}" + >{{ thread.subject|strip_subject:mlist|truncatesmart:"22" }}</a> + {% endif %} + {% endfor %} + <h1>{{ subject }}</h1> + </div> {% include 'threads/right_col.html' %} @@ -52,3 +52,5 @@ </script> {% endblock %} + +{# vim: set noet: #} |