diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-27 19:02:32 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-27 23:38:36 +0100 |
commit | 07c1a4a2b4211c1975f9d641401636a8cbc35f9c (patch) | |
tree | c18e9a619552eb9a777a27b126ca9ca62624b25c /hyperkitty/templates/messages/reply_form.html | |
parent | 628d011c865da76054d6b72ddf3f0f5e7341f649 (diff) | |
download | hyperkitty-07c1a4a2b4211c1975f9d641401636a8cbc35f9c.tar.gz hyperkitty-07c1a4a2b4211c1975f9d641401636a8cbc35f9c.tar.xz hyperkitty-07c1a4a2b4211c1975f9d641401636a8cbc35f9c.zip |
Switch to the new-style "url" tag
Required by Django >= 1.5
https://docs.djangoproject.com/en/1.5/releases/1.5/
Diffstat (limited to 'hyperkitty/templates/messages/reply_form.html')
-rw-r--r-- | hyperkitty/templates/messages/reply_form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyperkitty/templates/messages/reply_form.html b/hyperkitty/templates/messages/reply_form.html index 15a0ddb..755488c 100644 --- a/hyperkitty/templates/messages/reply_form.html +++ b/hyperkitty/templates/messages/reply_form.html @@ -2,7 +2,7 @@ <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 %}"> + action="{% url 'message_reply' mlist_fqdn=mlist_fqdn message_id_hash=message_id_hash %}"> {% csrf_token %} {{ reply_form.as_p }} <p class="buttons"> |