{% load i18n simple_translation_tags %} {% load url from future %} {% with example|get_preferred_translation_from_request:request as example_trans %}

{% for sector in example.sectors.all %} {{ sector }}{% if not forloop.last %}, {% endif %} {% endfor %} / {% for country in example.countries.all %} {{ country }}{% if not forloop.last %}, {% endif %} {% endfor %}

{{ example_trans.title }}

{% for placeholder in example.placeholders.all %} {% for plugin in placeholder.cmsplugin_set.all %}

{{ plugin.render_plugin }}

{% endfor %} {% endfor %}

{% trans "Goals" %}

{% endwith %}