{% load i18n %} {% load static %} {% load utils_tags %} {% if value_propositions.exists %}
{% for proposition in value_propositions %}
{{ proposition.title }}
{{ proposition.description }}
{% endfor %}
{% else %} {% if request.user.is_authenticated and request.user.is_staff %}
{% url 'dashboard:value_proposition_new' as value_proposition_url %} {% blocktrans with url=value_proposition_url %}Add value propositions in the dashboard to display them here.{% endblocktrans %}
{% endif %} {% endif %}