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/messages/reply_form.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/messages/reply_form.html')
-rw-r--r-- | hyperkitty/templates/messages/reply_form.html | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/hyperkitty/templates/messages/reply_form.html b/hyperkitty/templates/messages/reply_form.html index b0a810d..44dcc3a 100644 --- a/hyperkitty/templates/messages/reply_form.html +++ b/hyperkitty/templates/messages/reply_form.html @@ -1,26 +1,24 @@ {% load url from future %} - <a class="reply{% if not user.is_authenticated %} disabled" title="You must be logged-in to reply.{% endif %}" href="#">Reply</a> - <div class="reply-form dropdown"> - <form method="post" - action="{% url 'message_reply' mlist_fqdn=mlist_fqdn message_id_hash=message_id_hash %}"> - {% csrf_token %} - <p class="reply-tools"> - <a class="btn btn-mini quote" href="#">Quote</a> - <label>{{ reply_form.newthread }} Create a new thread</label> - </p> - {{ reply_form.non_field_errors }} - {% for field in reply_form %} - {% if field.html_name != "newthread" %} - <p>{{ field }} {{ field.errors}}</p> - {% endif %} - {% endfor %} - {# { reply_form.as_p } #} - <p class="buttons"> - <button type="submit" class="submit btn btn-primary">Send</button> - or <a class="cancel" href="#">cancel</a> - </p> - </form> - </div> - -{# vim: set noet: #} + <a class="reply{% if not user.is_authenticated %} disabled" title="You must be logged-in to reply.{% endif %}" href="#">Reply</a> + <div class="reply-form dropdown"> + <form method="post" + action="{% url 'message_reply' mlist_fqdn=mlist_fqdn message_id_hash=message_id_hash %}"> + {% csrf_token %} + <p class="reply-tools"> + <a class="btn btn-mini quote" href="#">Quote</a> + <label>{{ reply_form.newthread }} Create a new thread</label> + </p> + {{ reply_form.non_field_errors }} + {% for field in reply_form %} + {% if field.html_name != "newthread" %} + <p>{{ field }} {{ field.errors}}</p> + {% endif %} + {% endfor %} + {# { reply_form.as_p } #} + <p class="buttons"> + <button type="submit" class="submit btn btn-primary">Send</button> + or <a class="cancel" href="#">cancel</a> + </p> + </form> + </div> |