Files
vision/templates/document/history.html.twig
2023-03-28 13:02:44 +00:00

13 lines
489 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{{ ('documentType_' ~ document.classShort)|trans }}: {{ document.getTitle }} - {% trans %}title_history{% endtrans %}{% endblock %}
{% block subtitle %}#{{ document.id }}: {{ document.getTitle }} - {% trans %}title_history{% endtrans %} {% endblock %}
{% block body %}
<div class="row">
<div class="col">
{% include '_cells/historyDisplay.html.twig' with {'history': history, notype: true} %}
</div>
</div>
{% endblock %}