added reporting screen (#1805)

This commit is contained in:
Kevin Papst
2020-07-12 14:05:14 +02:00
committed by GitHub
parent b97d9f692d
commit 164af7ae02
44 changed files with 1294 additions and 79 deletions

View File

@@ -0,0 +1,14 @@
{% extends 'base.html.twig' %}
{% import "reporting/actions.html.twig" as actions %}
{% block page_title %}{{ 'reporting.title'|trans({}, 'reporting') }}{% endblock %}
{% block page_subtitle %}{% block report_title %}{% endblock %}{% endblock %}
{% block page_actions %}{{ actions.reporting() }}{% endblock %}
{% block main %}
<div class="row">
<div class="col-md-12">
{% block report %}{% endblock %}
</div>
</div>
{% endblock %}