{% extends "passerelle/manage/service_view.html" %} {% load i18n passerelle %} {% block content %} {% if object.description %}{{object.description|linebreaks}}{% endif %}

{%trans 'Destinations list' %}

{% for destination in object.get_destination_terms %} {% endfor %}
{% trans 'Label' %}{% trans 'Price' %}{% trans 'Description' %}{% trans 'Payment required' %} 
{{destination.text}}{{destination.price}}{{destination.description}} {{destination.paymentrequired}}

{% trans 'Add new destination' %}


{%trans 'Motivations list' %}

{% for motivation in object.get_motivation_terms %} {% endfor %}
{% trans 'Label' %}{% trans 'Price' %}{% trans 'Description' %} 
{{motivation.text}} {{motivation.price}} {{motivation.description}}

{% trans 'Add new motivation' %}

{% endblock %}