diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-06-12 19:34:38 +0200 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-06-12 19:34:38 +0200 |
| commit | a195f1b150d2b17cdefd64038528b53035d585f7 (patch) | |
| tree | 24631dfe458c691636dd9e4c37b5c104c120ff80 /hyperkitty/templates/threads/right_col.html | |
| parent | e5c785c29f2af0f9978814f7a34132388c44045d (diff) | |
| download | hyperkitty-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.html | 124 |
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}} - - Go to: <a href="#" class="nextunread" title="hotkey: j">next ↓</a> - - <a href="#" class="prevunread" title="hotkey: k">prev ↑</a> - </div> + <div> + Unreads: <span class="unreadindex">0</span>/{{unread_count}} + + Go to: <a href="#" class="nextunread" title="hotkey: j">next ↓</a> + - <a href="#" class="prevunread" title="hotkey: k">prev ↑</a> + </div> </div> {% endif %} - -{# vim: set noet: #} |
