X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/bc0f8e4eecbf058da20f119b5bb70d6c4690b562..ddf19efc791510fde4615c00cc85299c213d5924:/apps/organizations/templates/organizations/organizations.html diff --git a/apps/organizations/templates/organizations/organizations.html b/apps/organizations/templates/organizations/organizations.html index 89710c9f..98a65f6c 100644 --- a/apps/organizations/templates/organizations/organizations.html +++ b/apps/organizations/templates/organizations/organizations.html @@ -1,21 +1,23 @@ {% extends "catalogue/base.html" %} -{% load i18n thumbnail %} +{% load i18n %} -{% block inner_content %} - -

{% trans "Organizations" %}

-{% for org in organizations %} -
- - {% if org.logo %} - {% thumbnail org.logo "160x100" format="PNG" padding=True as th %} - - {% endthumbnail %} - {% endif %} -
{{ org.name }}
-
+{% block content %} +
+

{% trans "Organizations" %}

+
+
+
+

{% trans "Filters" %}

+
+ {{ filter_set.form.as_p }} + +
+
+
+ {% for org in filter_set.qs %} + {% include "organizations/organization_box.html" %} + {% endfor %} +
-{% endfor %} - {% endblock %}