{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Institutions" %}{% endblock %} {% block content %}

{% trans pagetitle %}

{% if institutions %}
{% for institution in institutions %}
{% if institution.image %} {% endif %}
{# create a new row after every 2nd item #} {% if forloop.counter|divisibleby:2 %}

{% endif %} {% endfor %}
{% else %}
{% trans 'No objects found' %}
{% endif %}
{% include "countries.html" %}
{% endblock %}