Feature: [saved export] Générate a report from a saved export

This commit is contained in:
2022-11-08 18:02:26 +01:00
parent aec4c52567
commit 79e9906a05
5 changed files with 86 additions and 6 deletions

View File

@@ -49,9 +49,14 @@ window.addEventListener("DOMContentLoaded", function(e) {
data-download-text="{{ "Download your report"|trans|escape('html_attr') }}"
><span id="waiting_text">{{ "Waiting for your report"|trans ~ '...' }}</span></div>
<div>
<a href="{{ chill_path_add_return_path('chill_main_export_save_from_key', { alias: alias, key: app.request.query.get('key')}) }}">{{ 'Save'|trans }}</a>
</div>
<ul class="record_actions sticky-form-buttons">
<li class="cancel"><a href="{{ chill_return_path_or('chill_main_export_index') }}" class="btn btn-cancel">{{ 'Back to the list'|trans }}</a></li>
</div>
{% if not app.request.query.has('prevent_save') %}
<li>
<a href="{{ chill_path_add_return_path('chill_main_export_save_from_key', { alias: alias, key: app.request.query.get('key')}) }}" class="btn btn-save">{{ 'Save'|trans }}</a>
</li>
{% endif %}
</ul>
</div>
{% endblock content %}

View File

@@ -15,10 +15,16 @@
{% for s in saveds %}
<div class="col-6 col-md-4 mb-3">
<h2>{{ s.saved.title }}</h2>
<p>{{ s.export.title|trans }}</p>
<p><strong>{{ s.export.title|trans }}</strong></p>
<div>
{{ s.saved.description|chill_markdown_to_html }}
</div>
<ul class="record_actions">
<li><a href="#" class="btn btn-delete"></a></li>
<li><a href="#" class="btn btn-edit"></a></li>
<li><a href="{{ path('chill_main_export_generate_from_saved', { id: s.saved.id }) }}" class="btn btn-action"><i class="fa fa-cog"></i></a></li>
</ul>
</div>
{% endfor %}
</div>
@@ -39,6 +45,12 @@
<div>
{{ s.saved.description|chill_markdown_to_html }}
</div>
<ul class="record_actions">
<li><a href="#" class="btn btn-delete"></a></li>
<li><a href="#" class="btn btn-edit"></a></li>
<li><a href="{{ path('chill_main_export_generate_from_saved', { id: s.saved.id }) }}" class="btn btn-action"><i class="fa fa-cog"></i></a></li>
</ul>
</div>
</div>
{% endfor %}