Add jail's status + directorys history admin

This commit is contained in:
Xbird
2022-09-11 15:33:37 +00:00
parent 59c8fa4aa8
commit 1a52a91d7e
11 changed files with 108 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
{% 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 %}