{% extends "mapentity/mapentity_detail_attributes.html" %} {% load i18n mapentity_tags %} {% block attributes %} {% include "altimetry/elevationinfo_fragment.html" %} {% include "mapentity/trackinfo_fragment.html" %}
{{ trail|verbose:"structure" }} {{ trail.structure }}
{{ trail|verbose:"name" }} {{ trail.name }}
{{ trail|verbose:"departure" }} {{ trail.departure }}
{{ trail|verbose:"arrival" }} {{ trail.arrival }}
{{ trail|verbose:"category" }} {{ trail.category|default:"" }}
{{ trail|verbose:"certifications" }} {% for certification in trail.certifications.all %} {{ certification }}
{% empty %} {% trans "No certification" %} {% endfor %}
{{ trail|verbose:"comments" }} {{ trail.comments|safe|linebreaks }}
{% trans "External id" %} {% if trail.eid %}{{ trail.eid|safe }} {% else %}{% trans "None" %}{% endif %}
{% trans "Provider" %} {% if trail.provider %}{{ trail.provider|safe }} {% else %}{% trans "None" %}{% endif %}
{{ block.super }} {% endblock attributes %}