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

{{ gettext("My cooperations") }}

{{ "hands-helping"|icon }} {{ gettext("Create cooperation ") }}

{{ gettext("Cooperations that I coordinate") }}

{% if list_of_coordinations.rows %} {% for coop in list_of_coordinations.rows %} {% endfor %} {% else %}

{{ gettext("You do not coordinate any cooperation") }}

{% endif %}

{{ gettext("Incoming cooperation request (by others)") }}

{% if list_of_inbound_coop_requests.rows %} {% for req in list_of_inbound_coop_requests.rows %} {% endfor %}
{% else %}

{{ gettext("You don't have open requests") }}

{% endif %}

{{ gettext("Outgoing cooperation requests (own requests)") }}

{% if list_of_outbound_coop_requests.rows %} {% for req in list_of_outbound_coop_requests.rows %}

{{ gettext("Plan") }}:  {{ req.plan_name }}
{{ gettext("Cooperation") }}: {{ req.coop_name }}

{% endfor %} {% else %}

{{ gettext("You haven't requested any cooperation")}}

{% endif %}

{{ gettext("My cooperating plans") }}

{% if list_of_my_cooperating_plans.rows %} {% for plan in list_of_my_cooperating_plans.rows %} {% endfor %} {% else %}

{{ gettext("You don't have any cooperating plans.")}}

{% endif %}
{% endblock %}