diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-07-22 15:28:43 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-07-22 15:28:49 +0200 |
commit | 4f7f46f606c1be9c014352e820590d45c6de2eee (patch) | |
tree | 051c0f4671de35599801e70d31fbd3b738e97cb1 /hyperkitty/templates/threads | |
parent | 859c8ca6e54d95b8fd6b26487a09165f0a294025 (diff) | |
download | hyperkitty-4f7f46f606c1be9c014352e820590d45c6de2eee.tar.gz hyperkitty-4f7f46f606c1be9c014352e820590d45c6de2eee.tar.xz hyperkitty-4f7f46f606c1be9c014352e820590d45c6de2eee.zip |
Improve appearance of the rattach thread page
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/right_col.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html index c6d6d30..a9b5b38 100644 --- a/hyperkitty/templates/threads/right_col.html +++ b/hyperkitty/templates/threads/right_col.html @@ -33,11 +33,19 @@ <a href="#RmFav" class="saved">Remove from favorite discussions</a> </p> </form> + <div class="discussion">{{ num_comments }} comments</div> + <div class="participant">{{ participants|length }} participants</div> <p class="unread"> {% if user.is_authenticated %} <i class="unread icon-eye-close"></i> {{ unread_count }} unread messages {% endif %} </p> + {% if user.is_staff %} + <p><i class="icon-resize-small"></i> + <a href="{% url 'thread_reattach' mlist_fqdn=mlist.name threadid=threadid %}" + >Reattach this thread</a> + </p> + {% endif %} <div id="tags"> {% include 'threads/tags.html' %} </div> @@ -50,12 +58,6 @@ {{ addtag_form.as_p }} </form> </div> - {% if user.is_staff %} - <p><i class="icon-resize-small"></i> - <a href="{% url 'thread_reattach' mlist_fqdn=mlist.name threadid=threadid %}" - >Reattach this thread</a> - </p> - {% endif %} <div id="participants"> <span id="participants_title">participants</span> ({{participants|length}}) <ul> |