blob: 15a0ddb1d2827e904d1beceb5e39bc89ae1c1934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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">
<p class="reply-tools">[<a href="#" class="quote">Quote</a>]</p>
<form method="post"
action="{% url message_reply mlist_fqdn=mlist_fqdn, message_id_hash=message_id_hash %}">
{% 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: #}
|