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

{% trans "Projects in bookmarks" %}

{% for project in projects_followed.all %}
{% include "horizontal_card_project.html" %}
{% endfor %}
{% endif %} {% if organisations_submitted.all %}

{% trans "Submitted organisations" %}

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

{% trans "Resources in bookmarks" %}

{% for resource in resources_followed.all %}
{% include "horizontal_card_resource.html" %}
{% endfor %}
{% endif %} {% if trainings_followed.all %}

{% trans "Training in bookmarks" %}

{% for resource in trainings_followed.all %}
{% include "horizontal_card_resource.html" %}
{% endfor %}
{% endif %} {% if event_submitted.all %}

{% trans "Submitted events" %}

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