mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-25 00:53:48 +00:00
[export] layout of page "export list"
This commit is contained in:
@@ -16,25 +16,21 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#}
|
||||
|
||||
{% extends "ChillMainBundle::layoutWithVerticalMenu.html.twig" %}
|
||||
{% extends "ChillMainBundle::layout.html.twig" %}
|
||||
|
||||
{% block title %}{{ 'Exports list'|trans }}{% endblock %}
|
||||
|
||||
{% block vertical_menu_content %}
|
||||
{{ chill_menu('export', {
|
||||
'layout': 'ChillMainBundle::Menu/export.html.twig',
|
||||
}) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block layout_wvm_content %}
|
||||
{% block export_content %}
|
||||
<h1>{{ 'Exports list'|trans }}</h1>
|
||||
|
||||
{% block content %}
|
||||
<div class="container-export">
|
||||
<h1>{{ 'Exports list'|trans }}</h1>
|
||||
|
||||
<div class="export-list">
|
||||
{% for export_alias,export in exports %}
|
||||
<div class="export">
|
||||
<div class="export-list__element">
|
||||
<h2>{{ export.title|trans }}</h2>
|
||||
<p>{{ export.description|trans }}</p>
|
||||
|
||||
|
||||
<p>
|
||||
<a class="sc-button bt-action" href="{{ path('chill_main_export_new', { 'alias': export_alias } ) }}">
|
||||
{{ 'Create an export'|trans }}
|
||||
@@ -42,5 +38,6 @@
|
||||
</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@@ -1 +1 @@
|
||||
{% if nb > 0 %}<span class="notification-counter">{{ nb }}{% endif %}
|
||||
{% if nb > 0 %}<span class="notification-counter">{{ nb }}</span>{% endif %}
|
Reference in New Issue
Block a user