exports: display group as a breadcrumb in template

add a private method in controller which could be moved maybe in ExportManager
This commit is contained in:
2022-08-17 13:02:54 +02:00
parent d9b668e614
commit df9a5071c7
5 changed files with 43 additions and 1 deletions

View File

@@ -36,6 +36,11 @@ window.addEventListener("DOMContentLoaded", function(e) {
{% block content %}
<div class="col-md-10">
<h6>
<i class="fa fa-folder-open-o fa-fw"></i>
{{ export_group|trans }}
</h6>
<h1>{{ export.title|trans }}</h1>
<h2>{{ "Download export"|trans }}</h2>

View File

@@ -27,6 +27,11 @@
{% block content %}
<div class="col-md-10">
<h6>
<i class="fa fa-folder-open-o fa-fw"></i>
{{ export_group|trans }}
</h6>
<h1>{{ export.title|trans }}</h1>
<p>{{ export.description|trans }}</p>

View File

@@ -23,6 +23,11 @@
{% block content %}
<div class="col-md-10">
<h6>
<i class="fa fa-folder-open-o fa-fw"></i>
{{ export_group|trans }}
</h6>
<h1>{{ export.title|trans }}</h1>
<p>{{ export.description|trans }}</p>

View File

@@ -22,6 +22,11 @@
{% block content %}
<div class="col-md-10">
<h6>
<i class="fa fa-folder-open-o fa-fw"></i>
{{ export_group|trans }}
</h6>
<h1>{{ export.title|trans }}</h1>