1 {% extends "catalogue/base.html" %}
2 {% load i18n thumbnail %}
5 {% block inner_content %}
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 %}">
12 {% thumbnail org.logo "160x100" format="PNG" padding=True as th %}
13 <img src="{{ th.url }}" style="margin: 10px;">
16 <div style="position: absolute; bottom: 10px; left: 10px; width: 160px; height: 40px; overflow:hidden">{{ org.name }}</div>