{% extends "views/platform-admin/_base_template.html" %} {% from "components/page-footer.html" import page_footer %} {% block per_page_title %} Show organisations {% endblock %} {% block service_page_title %} Show organisations {% endblock %} {% block platform_admin_content %}

Organisations

{% for org in organisations %}
{{ org['name'] }} {% if not org['active'] %} - archived {% endif %}
{% endfor %}
Create an organisation
{% endblock %}