Files
vision/templates/directory/history.html.twig
2022-09-11 15:33:37 +00:00

13 lines
440 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{{ directory.fullName }} - {% trans %}title_history{% endtrans %}{% endblock %}
{% block subtitle %}#{{ directory.id }}: {{ directory.fullName }} - {% 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 %}