{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %} {% set activeRouteKey = '' %} {% block title %}{{ 'Delete document ?' }}{% endblock %} {% block docdescription %}
{{ 'Title'|trans }}
{{ document.title }}
{% if document.scope is not null %}
{{ 'Scope' | trans }}
{{ document.scope.name | localize_translatable_string }}
{% endif %}
{{ 'Category'|trans }}
{{ document.category.name|localize_translatable_string }}
{{ 'Description' | trans }}
{% if document.description is empty %} {{ 'Any description'|trans }} {% else %}
{{ document.description|chill_markdown_to_html }}
{% endif %}
{% endblock %} {% block content %} {{ include('@ChillMain/Util/confirmation_template.html.twig', { 'title' : 'Delete document ?'|trans, 'display_content' : block('docdescription'), 'confirm_question' : 'Are you sure you want to remove this document ?'|trans, 'cancel_route' : 'accompanying_course_document_index', 'cancel_parameters' : {'course' : accompanyingCourse.id, 'id': document.id}, 'form' : delete_form } ) }} {% endblock %}