diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-04 17:27:40 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-04 17:27:40 +0100 |
commit | cec92b8f26a8149b8eb1fe831a036704cb20d5d6 (patch) | |
tree | 5f2049c3124c0d1b91374fd669b0c1b32ab34f8d /hyperkitty/templates/messages/reply_form.html | |
parent | 0746b9db3c828b90885d81ce64bbd33fe03c8a26 (diff) | |
parent | f6a642a52e05f44f7131dfd182e707d6f1fe6e7e (diff) | |
download | hyperkitty-cec92b8f26a8149b8eb1fe831a036704cb20d5d6.tar.gz hyperkitty-cec92b8f26a8149b8eb1fe831a036704cb20d5d6.tar.xz hyperkitty-cec92b8f26a8149b8eb1fe831a036704cb20d5d6.zip |
Merge branch 'posting'
Diffstat (limited to 'hyperkitty/templates/messages/reply_form.html')
-rw-r--r-- | hyperkitty/templates/messages/reply_form.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hyperkitty/templates/messages/reply_form.html b/hyperkitty/templates/messages/reply_form.html new file mode 100644 index 0000000..29bd15b --- /dev/null +++ b/hyperkitty/templates/messages/reply_form.html @@ -0,0 +1,14 @@ + <a class="reply icon-envelope" href="#">Reply</a> + <div class="reply-form dropdown"> + <form method="post" + action="{% url message_reply mlist_fqdn=mlist_fqdn, message_id=message_id %}"> + {% csrf_token %} + {{ 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: #} |