organization filters
[redakcja.git] / apps / organizations / templates / organizations / organizations.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4
5 {% block content %}
6     <div class="row">
7         <h1 class="col-md-8 col-md-offset-3">{% trans "Organizations" %}</h1>
8     </div>
9     <div class="row">
10         <div class="col-md-2 col-md-offset-1">
11             <h3>{% trans "Filters" %}</h3>
12             <form action="" method="get">
13                 {{ filter_set.form.as_p }}
14                 <input type="submit" value="{% trans "Apply" %}" />
15             </form>
16         </div>
17         <div class="col-md-8">
18             {% for org in filter_set.qs %}
19                 {% include "organizations/organization_box.html" %}
20             {% endfor %}
21         </div>
22     </div>
23 {% endblock %}