summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/threads/add_tag_form.html
blob: 44b5f76547c587da7d51df8adb6a95419da463b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block header %} {% endblock %}

{% block content %}
<form id="addtag" action="{% url add_tag mlist_fqdn=list_address, hashid=threadid %}" method="post">
	{% csrf_token %}
	{{ addtag_form }}
	<button type="submit">
		Add
	</button>
</form>
{% endblock %}

{# vim: set noet: #}