{% load i18n cosinnus_tags %} {% if object.media_tag_object.location %} {% trans "My location" %}

{{ object.media_tag_object.location }}

{% endif %} {% with topics=object.media_tag_object.topics %} {% if topics %} {% trans "Topics I am interested in" %} {% comment %} Approach disabled for now {% if object.media_tag_object.approach %}

{{ object.media_tag_object.get_approach_display }}

{% endif %} {% endcomment %}

{% render_cosinnus_topics topics %}

{% endif %} {% endwith %} {% with tags=object.media_tag_object.tags.all %} {% if tags %} {% trans "What I wish to learn" %}

{% for tag in tags %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %} {% endwith %} {% comment %} Faked to 'all' {% endcomment %} {% trans "Visibility" %}

{% if object.media_tag_object.visibility == 1 %} {% trans "Logged in Members only" %} {% elif object.media_tag_object.visibility == 2 %} {% trans "Everybody" %} {% else %} {% trans "Team members only" %} {% endif %}