mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Introduce functionality to duplicate saved exports and update options directly from export generations. Update translations, controllers, views, and entities to support the new features, providing better flexibility and user experience around saved export management.
38 lines
976 B
Twig
38 lines
976 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% block title %}{{ 'saved_export.Edit'|trans }}{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ parent() }}
|
|
{{ encore_entry_link_tags('mod_pickentity_type') }}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ parent() }}
|
|
{{ encore_entry_script_tags('mod_pickentity_type') }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-10">
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.title) }}
|
|
{{ form_row(form.description) }}
|
|
|
|
{% if form.share is defined %}
|
|
{{ form_row(form.share) }}
|
|
{% endif %}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="cancel">
|
|
<a href="{{ chill_return_path_or('chill_main_export_saved_list_my') }}" class="btn btn-cancel">{{ 'Cancel'|trans }}</a>
|
|
</li>
|
|
<li>
|
|
<button type="submit" class="btn btn-save">{{ 'Save'|trans }}</button>
|
|
</li>
|
|
</ul>
|
|
{{ form_end(form) }}
|
|
</div>
|
|
{% endblock %}
|