diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 06:21:15 +0530 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 06:21:15 +0530 |
commit | e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262 (patch) | |
tree | 8dd57320e742394034515158c013915595877c1a /hyperkitty/templates/threads | |
parent | 6da4589cf562033fba6e1f5d910a28dbe39dc313 (diff) | |
download | hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.tar.gz hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.tar.xz hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.zip |
Feature : Add tag to email threads
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/add_tag_form.html | 2 | ||||
-rw-r--r-- | hyperkitty/templates/threads/right_col.html | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/hyperkitty/templates/threads/add_tag_form.html b/hyperkitty/templates/threads/add_tag_form.html index 65f6577..9df2196 100644 --- a/hyperkitty/templates/threads/add_tag_form.html +++ b/hyperkitty/templates/threads/add_tag_form.html @@ -3,7 +3,7 @@ {% block header %} {% endblock %} {% block content %} -<form action="/addtag/{{list_address}}/{{email_id}}/" method="post"> +<form id="addtag" action="{% url add_tag mlist_fqdn=list_address, email_id=first_mail.message_id %}" method="post"> {% csrf_token %} {{ addtag_form }} <button type="submit"> diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html index 9a1e448..f50bc46 100644 --- a/hyperkitty/templates/threads/right_col.html +++ b/hyperkitty/templates/threads/right_col.html @@ -37,7 +37,7 @@ </ul> </div> <div id="add_tag"> - <form action="/addtag/{{list_address}}/{{first_mail.message_id}}/" method="post"> + <form id="add_tag_form" name="addtag" action="{% url add_tag mlist_fqdn=list_address, email_id=first_mail.message_id %}" method="post"> {% csrf_token %} {{ addtag_form.as_p }} <button type="submit"> @@ -58,3 +58,4 @@ </div> </section> + |