summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/thread_list.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/thread_list.html
parente5c785c29f2af0f9978814f7a34132388c44045d (diff)
Use spaces instead of tabs in the templates
Diffstat (limited to 'hyperkitty/templates/thread_list.html')
-rw-r--r--hyperkitty/templates/thread_list.html60
1 files changed, 29 insertions, 31 deletions
diff --git a/hyperkitty/templates/thread_list.html b/hyperkitty/templates/thread_list.html
index d31b02f..32bbdfe 100644
--- a/hyperkitty/templates/thread_list.html
+++ b/hyperkitty/templates/thread_list.html
@@ -14,39 +14,39 @@
{% include 'threads/month_list.html' %}
- <div id="thread-list" class="span8">
+ <div id="thread-list" class="span8">
- <div class="thread-list-header page-header">
- <a href="{% url "message_new" mlist_fqdn=mlist.name %}"
- class="thread-new btn{% if not user.is_authenticated %} disabled" title="You must be logged-in to create a thread.{% endif %}"
- ><strong>+</strong> Start a new thread</a>
- <h1>{{ mlist.display_name|default:mlist.name|escapeemail }}
- <small>{{ list_title }}</small>
- </h1>
- <ul class="thread-list-info">
- {% if mlist.display_name %}
- <li class="list-address">
- {{ mlist.name|escapeemail }}
- </li>
- {% endif %}
- <li class="participant">
- {{ participants }} participants
- </li>
- <li class="discussion">
- {{ threads.paginator.count }} discussions
- </li>
- </ul>
- </div>
+ <div class="thread-list-header page-header">
+ <a href="{% url "message_new" mlist_fqdn=mlist.name %}"
+ class="thread-new btn{% if not user.is_authenticated %} disabled" title="You must be logged-in to create a thread.{% endif %}"
+ ><strong>+</strong> Start a new thread</a>
+ <h1>{{ mlist.display_name|default:mlist.name|escapeemail }}
+ <small>{{ list_title }}</small>
+ </h1>
+ <ul class="thread-list-info">
+ {% if mlist.display_name %}
+ <li class="list-address">
+ {{ mlist.name|escapeemail }}
+ </li>
+ {% endif %}
+ <li class="participant">
+ {{ participants }} participants
+ </li>
+ <li class="discussion">
+ {{ threads.paginator.count }} discussions
+ </li>
+ </ul>
+ </div>
- {% for thread in threads %}
- {% include "threads/summary_thread_large.html" %}
- {% empty %}
- <p>Sorry no email threads could be found {{ no_results_text }}.</p>
- {% endfor %}
+ {% for thread in threads %}
+ {% include "threads/summary_thread_large.html" %}
+ {% empty %}
+ <p>Sorry no email threads could be found {{ no_results_text }}.</p>
+ {% endfor %}
- {% include "paginator.html" with pager=threads %}
+ {% include "paginator.html" with pager=threads %}
- </div>
+ </div>
</div>
@@ -71,5 +71,3 @@ $(document).ready(function() {
});
</script>
{% endblock %}
-
-{# vim: set noet: #}