{% extends "layout.html" %} {% block content %}

{{ _('Organizations') }}

{% for organization in organizations %} {% endfor %}
# {{ _('Name') }} {{ _('Website') }} {{ _('Members') }} {{ _('Actions') }}
{{ loop.index }} {{ organization.name }} {{ organization.website }} {{ organization.users | count }}

{{ _('Add a new organization') }}
{% endblock %}