summaryrefslogtreecommitdiffstats
path: root/templates/threads
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-06-24 16:48:35 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-06-24 16:48:35 -0400
commit135667fb2cc820abe02826e378a68f3aead527af (patch)
tree9f0af1fce2ddd1180e939d257d1e15a49373b327 /templates/threads
parent3a92168e52989e39bc3e0d553e79ae278c7f95bf (diff)
Moved add_tag_form to templates/threads/
Diffstat (limited to 'templates/threads')
-rw-r--r--templates/threads/add_tag_form.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/threads/add_tag_form.html b/templates/threads/add_tag_form.html
new file mode 100644
index 0000000..da1014d
--- /dev/null
+++ b/templates/threads/add_tag_form.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+
+{% block header %} {% endblock %}
+
+{% block content %}
+ <form action="/addtag/{{list_address}}/{{email_id}}/" method="post">
+ {% csrf_token %}
+ {{ addtag_form }}
+ <button type="submit">Add</button>
+ </form>
+{% endblock %}