{% extends "_base.html" %} {% load i18n %} {% block content %} {% load static %}

{% if is_archive %} {% translate "Archived Organizations" %} {% else %} {% translate "Manage Organizations" %} {% endif %}

{% if not is_archive %}
{% if perms.cms.change_organization %} {% translate "Create organization" %} {% endif %}
{% endif %}
{% csrf_token %}
{% for organization in organizations %} {% include "organizations/organization_list_row.html" %} {% empty %} {% endfor %}
{% translate "Name" %} {% translate "Members" %} {% translate "Maintained contents" %} {% translate "Logo" %} {% translate "Website" %} {% translate "Options" %}
{% if is_archive %} {% translate "No archived organizations." %} {% else %} {% translate "No organizations available yet." %} {% endif %}
{% if organizations %}
0 {% translate "Organizations selected" %}
{% endif %} {% if perms.cms.change_organization %}
{% endif %} {% include "../generic_confirmation_dialog.html" %} {% url "organizations" as url %} {% include "pagination.html" with chunk=organizations %} {% endblock content %}