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/index.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/index.html')
-rw-r--r-- | hyperkitty/templates/index.html | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html index 85d051e..181edb2 100644 --- a/hyperkitty/templates/index.html +++ b/hyperkitty/templates/index.html @@ -16,18 +16,18 @@ <div class="row-fluid"> {% for mlist in all_lists %} <div class="span3"> - <a href="{% url 'list_overview' mlist_fqdn=mlist.name %}" class="mailinglist"> - <p class="list-name"> - {% if mlist.display_name %} - {{ mlist.display_name }} - {% else %} - {{ mlist.name }} - {% endif %} - </p> - <p class="list-address">{{ mlist.name }}</p> - <p class="list-description"></p> - <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" /> - </a> + <a href="{% url 'list_overview' mlist_fqdn=mlist.name %}" class="mailinglist"> + <p class="list-name"> + {% if mlist.display_name %} + {{ mlist.display_name }} + {% else %} + {{ mlist.name }} + {% endif %} + </p> + <p class="list-address">{{ mlist.name }}</p> + <p class="list-description"></p> + <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" /> + </a> </div> {% if forloop.counter|divisibleby:"4" %} </div> @@ -47,12 +47,10 @@ {% block additionaljs %} <script type="text/javascript"> - $(document).ready(function() { - // Load the properties - update_list_properties("{% url 'list_properties' %}"); - }); + $(document).ready(function() { + // Load the properties + update_list_properties("{% url 'list_properties' %}"); + }); </script> {% endblock %} - -{# vim: set noet: #} |