remove mismatched html tags
[redakcja.git] / apps / organizations / templates / organizations / new.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4 {% block inner_content %}
5
6     <h1>{% trans "Create a new organization" %}</h1>
7
8
9     <form enctype="multipart/form-data" method="POST">
10         {% include "organizations/snippets/organization_form.html" %}
11         <button style="margin-top:1em;" class="btn btn-default" type="submit">{% trans "Create organization" %}</button>
12     </form>
13
14
15 {% endblock %}