{% extends "./base_template_profiles.html" %} {% load i18n %} {% block profile_right %} {% if projects_submitted.all %}

{% trans "Submitted projects" %}

{% for project in projects_submitted.all %}
{% include "horizontal_card_project.html" %}
{% endfor %}
{% endif %} {% if resources_submitted.all %}

{% trans "Submitted resources" %}

{% for resource in resources_submitted.all %}
{% include "horizontal_card_resource.html" %}
{% endfor %}
{% endif %} {% if trainings_submitted.all %}

{% trans "Submitted training" %}

{% for resource in trainings_submitted.all %}
{% include "horizontal_card_resource.html" %}
{% endfor %}
{% endif %} {% if organisations_submitted.all %}

{% trans "Submitted organisations" %}

{% for organisation in organisations_submitted.all %}
{% include "horizontal_card_organisation.html" %}
{% endfor %}
{% endif %} {% if event_submitted.all %}

{% trans "Submitted events" %}

{% for event in event_submitted.all %}
{% include "horizontal_card_event.html" %}
{% endfor %}
{% endif %} {% endblock %}