mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
Merge remote-tracking branch 'origin/111_exports_suite' into testing
This commit is contained in:
@@ -517,3 +517,9 @@ div.popover {
|
||||
div.v-toast {
|
||||
z-index: 10000!important;
|
||||
}
|
||||
|
||||
div.grouped {
|
||||
padding: 1em;
|
||||
border: 1px solid black;
|
||||
margin-bottom: 2em;
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
<h6>
|
||||
<a href="{{ path('chill_main_export_index') }}" title="{{ 'Back to the list'|trans }}">
|
||||
<i class="fa fa-folder-open-o fa-fw"></i>
|
||||
</a>
|
||||
{{ export_group|trans }}
|
||||
</h6>
|
@@ -36,10 +36,7 @@ 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>
|
||||
{{ include('@ChillMain/Export/_breadcrumb.html.twig') }}
|
||||
|
||||
<h1>{{ export.title|trans }}</h1>
|
||||
<h2>{{ "Download export"|trans }}</h2>
|
||||
|
@@ -22,15 +22,15 @@
|
||||
|
||||
{% block js %}
|
||||
{{ encore_entry_script_tags('page_export') }}
|
||||
{% if export_alias == 'count_social_work_actions' %}
|
||||
{{ encore_entry_script_tags('vue_export_action_goal_result') }}
|
||||
{% endif %}
|
||||
{% endblock js %}
|
||||
|
||||
{% block content %}
|
||||
<div class="col-md-10">
|
||||
|
||||
<h6>
|
||||
<i class="fa fa-folder-open-o fa-fw"></i>
|
||||
{{ export_group|trans }}
|
||||
</h6>
|
||||
{{ include('@ChillMain/Export/_breadcrumb.html.twig') }}
|
||||
|
||||
<h1>{{ export.title|trans }}</h1>
|
||||
|
||||
|
@@ -22,11 +22,8 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="col-md-10">
|
||||
|
||||
<h6>
|
||||
<i class="fa fa-folder-open-o fa-fw"></i>
|
||||
{{ export_group|trans }}
|
||||
</h6>
|
||||
|
||||
{{ include('@ChillMain/Export/_breadcrumb.html.twig') }}
|
||||
|
||||
<h1>{{ export.title|trans }}</h1>
|
||||
|
||||
|
@@ -23,10 +23,7 @@
|
||||
{% block content %}
|
||||
<div class="col-md-10">
|
||||
|
||||
<h6>
|
||||
<i class="fa fa-folder-open-o fa-fw"></i>
|
||||
{{ export_group|trans }}
|
||||
</h6>
|
||||
{{ include('@ChillMain/Export/_breadcrumb.html.twig') }}
|
||||
|
||||
<h1>{{ export.title|trans }}</h1>
|
||||
|
||||
@@ -36,19 +33,21 @@
|
||||
<section class="formatter mb-4">
|
||||
<h2>{{ 'Formatter'| trans }}</h2>
|
||||
|
||||
<div>
|
||||
{% if form.children.formatter.children|length == 0 %}
|
||||
<p>
|
||||
<span class="chill-no-data-statement">{{ "No options availables. Your report is fully configured."|trans }}</span>
|
||||
</p>
|
||||
{{ form_widget(form.children.formatter) }}
|
||||
{% else %}
|
||||
{# we always have to render children, to mark as rendered #}
|
||||
{% for input in form.children.formatter.children %}
|
||||
{{ form_row(input) }}
|
||||
{% endfor %}
|
||||
<div class="container py-4">
|
||||
{# we always have to render children, to mark as rendered #}
|
||||
{% for input in form.children.formatter.children %}
|
||||
<div class="row">
|
||||
{{ form_row(input) }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="mb-4">
|
||||
|
Reference in New Issue
Block a user