summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/threads/right_col.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-12 19:34:38 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-12 19:34:38 +0200
commita195f1b150d2b17cdefd64038528b53035d585f7 (patch)
tree24631dfe458c691636dd9e4c37b5c104c120ff80 /hyperkitty/templates/threads/right_col.html
parente5c785c29f2af0f9978814f7a34132388c44045d (diff)
downloadhyperkitty-a195f1b150d2b17cdefd64038528b53035d585f7.tar.gz
hyperkitty-a195f1b150d2b17cdefd64038528b53035d585f7.tar.xz
hyperkitty-a195f1b150d2b17cdefd64038528b53035d585f7.zip
Use spaces instead of tabs in the templates
Diffstat (limited to 'hyperkitty/templates/threads/right_col.html')
-rw-r--r--hyperkitty/templates/threads/right_col.html124
1 files changed, 61 insertions, 63 deletions
diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html
index 76ed853..afbef7f 100644
--- a/hyperkitty/templates/threads/right_col.html
+++ b/hyperkitty/templates/threads/right_col.html
@@ -4,72 +4,70 @@
<!-- right column -->
<section id="thread-overview-info">
- <!-- Start dates -->
- <div id="thread-date-info" class="row-fluid">
- <div class="days-num">
- {{ days_inactive }}
- </div>
- <div class="days-text">
- days
- <br />
- inactive
- </div>
- <div class="days-num">
- {{ days_old }}
- </div>
- <div class="days-text">
- days
- <br />
- old
- </div>
- </div>
- <!-- End dates -->
- <form id="fav_form" name="favorite" method="post" class="favorite"
- action="{% url 'favorite' mlist_fqdn=mlist.name threadid=threadid %}">
- {% csrf_token %}
- <input type="hidden" name="action" value="{{ fav_action }}" />
- <p>
- <a href="#AddFav" class="notsaved{% if not user.is_authenticated %} disabled" title="You must be logged-in to have favorites.{% endif %}">Add to favorite discussions</a>
- <a href="#RmFav" class="saved">Remove from favorite discussions</a>
- </p>
- </form>
- <p class="unread">
- {% if user.is_authenticated %}
- <i class="unread icon-eye-close"></i> {{ unread_count }} unread messages
- {% endif %}
- </p>
- <div id="tags">
- {% include 'threads/tags.html' %}
- </div>
- <div id="add-tag">
- <form id="add-tag-form" name="addtag" method="post"
- action="{% url 'add_tag' mlist_fqdn=mlist.name threadid=threadid %}">
- {% csrf_token %}
- {{ addtag_form.as_p }}
- </form>
- </div>
- <div id="participants">
- <span id="participants_title">participants</span> ({{participants|length}})
- <ul>
- {% for name, email in participants %}
- <li>
- {% gravatar email 20 %}
- {{ name|escapeemail }}
- </li>
- {% endfor %}
- </ul>
- </div>
+ <!-- Start dates -->
+ <div id="thread-date-info" class="row-fluid">
+ <div class="days-num">
+ {{ days_inactive }}
+ </div>
+ <div class="days-text">
+ days
+ <br />
+ inactive
+ </div>
+ <div class="days-num">
+ {{ days_old }}
+ </div>
+ <div class="days-text">
+ days
+ <br />
+ old
+ </div>
+ </div>
+ <!-- End dates -->
+ <form id="fav_form" name="favorite" method="post" class="favorite"
+ action="{% url 'favorite' mlist_fqdn=mlist.name threadid=threadid %}">
+ {% csrf_token %}
+ <input type="hidden" name="action" value="{{ fav_action }}" />
+ <p>
+ <a href="#AddFav" class="notsaved{% if not user.is_authenticated %} disabled" title="You must be logged-in to have favorites.{% endif %}">Add to favorite discussions</a>
+ <a href="#RmFav" class="saved">Remove from favorite discussions</a>
+ </p>
+ </form>
+ <p class="unread">
+ {% if user.is_authenticated %}
+ <i class="unread icon-eye-close"></i> {{ unread_count }} unread messages
+ {% endif %}
+ </p>
+ <div id="tags">
+ {% include 'threads/tags.html' %}
+ </div>
+ <div id="add-tag">
+ <form id="add-tag-form" name="addtag" method="post"
+ action="{% url 'add_tag' mlist_fqdn=mlist.name threadid=threadid %}">
+ {% csrf_token %}
+ {{ addtag_form.as_p }}
+ </form>
+ </div>
+ <div id="participants">
+ <span id="participants_title">participants</span> ({{participants|length}})
+ <ul>
+ {% for name, email in participants %}
+ <li>
+ {% gravatar email 20 %}
+ {{ name|escapeemail }}
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
</section>
{% if user.is_authenticated %}
<div id="unreadnavbar">
- <div>
- Unreads: <span class="unreadindex">0</span>/{{unread_count}}
- &nbsp;
- Go to: <a href="#" class="nextunread" title="hotkey: j">next &darr;</a>
- - <a href="#" class="prevunread" title="hotkey: k">prev &uarr;</a>
- </div>
+ <div>
+ Unreads: <span class="unreadindex">0</span>/{{unread_count}}
+ &nbsp;
+ Go to: <a href="#" class="nextunread" title="hotkey: j">next &darr;</a>
+ - <a href="#" class="prevunread" title="hotkey: k">prev &uarr;</a>
+ </div>
</div>
{% endif %}
-
-{# vim: set noet: #}