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

{{ gettext("Request cooperation")}}

{{ "info-circle"|icon }}

{{ gettext("Here you can request a cooperation.")}}

{{ gettext("The coordinator of the cooperation decides if they add your plan to the cooperation.")}}
{{ gettext("All plans in a cooperation should offer the same or a similar product.")}}

{% if view_model is defined %}
{% for notification in view_model.notifications %}
{{ notification }}
{% endfor %}
{% endif %} {% if form is defined %} {% for field_name, field_errors in form.errors|dictsort if field_errors %} {% for error in field_errors %}
{{ error }}
{% endfor %} {% endfor %} {% endif %}
{% if list_plans_view_model is defined and list_plans_view_model.show_plan_listing %}
{{ "file"|icon }}
{% else %}

{{ gettext("No plans yet.")}}

{% endif %}
{% endblock %}