summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/messages/reply_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/messages/reply_form.html')
-rw-r--r--hyperkitty/templates/messages/reply_form.html14
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: #}