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

{% trans "Organizations" %}

{% for organization_group in organizations %} {% if organization_group.all|length > 0 %}

{% if organization_group.type %} {{ organization_group.type }} {% else %} {% trans "Unknown Type" %} {% endif %}

{% endif %} {% endfor %}
{% endblock %}