{% extends "base.html" %} {% block navbar_start %} {% endblock %} {% block content %}

{{ gettext("All cooperations") }}

{% if view_model.show_results %}
{% for coop in view_model.cooperations %} {% endfor %}
{{ gettext("Name") }} {{ gettext("Number of plans") }}
{{ coop.name }} {{ coop.plan_count }}
{% else %}

{{ gettext("No cooperations found") }}

{% endif %}
{% endblock %}