89710c9f0c6c8d048e8a999ded859e3a8cf39796
[redakcja.git] / apps / organizations / templates / organizations / organizations.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n thumbnail %}
3
4
5 {% block inner_content %}
6
7 <h1>{% trans "Organizations" %}</h1>
8 {% for org in organizations %}
9     <div style="width: 182px; height: 180px; position: relative; border: 1px solid #aaa; margin: 10px; display: inline-block; padding: 0px; vertical-align: bottom">
10         <a style='display:block' href="{% url 'organizations_main' org.pk %}">
11         {% if org.logo %}
12             {% thumbnail org.logo "160x100" format="PNG"  padding=True as th %}
13             <img src="{{ th.url }}" style="margin: 10px;">
14             {% endthumbnail %}
15         {% endif %}
16         <div style="position: absolute; bottom: 10px; left: 10px; width: 160px; height: 40px; overflow:hidden">{{ org.name }}</div>
17         </a>
18     </div>
19 {% endfor %}
20
21 {% endblock %}