16188ccc2b548ddbee565448eb08ca5b0be4a625
[redakcja.git] / apps / catalogue / templates / catalogue / finished.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4
5 {% block inner_content %}
6     <h1>{% trans "Finished resources" %}</h1>
7     <form action="" method="get">
8         {{ filter_set.form.as_p }}
9         <input type="submit" />
10     </form>
11     {% for doc in filter_set.qs %}
12         {% include "catalogue/resource_box.html" with link_url='catalogue_html' %}
13     {% endfor %}
14 {% endblock %}