{% extends "base.html" %} {% from 'macros/navbar.html' import navbar %} {% block navbar_start %} {{ navbar(navbar_items) }} {% endblock %} {% block content %}

{{ gettext("My collaborations") }}

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

{{ "envelope"|icon }} {{ gettext("Request collaboration") }}

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

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

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

{% endif %}

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

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

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

{% endif %}

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

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

{{ gettext("Plan") }}:  {{ req.plan_name }}
{{ gettext("Collaboration") }}: {{ req.collab_name }}

{% endfor %} {% else %}

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

{% endif %}

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

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

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

{% endif %}
{% endblock %}