mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
56 lines
2.1 KiB
Twig
56 lines
2.1 KiB
Twig
{% extends '@ChillMain/layout.html.twig' %}
|
|
|
|
{% block title %}
|
|
{{ 'Workflow'|trans }}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ parent() }}
|
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
|
{{ encore_entry_script_tags('mod_pickentity_type') }}
|
|
{{ encore_entry_script_tags('mod_entity_workflow_subscribe') }}
|
|
{{ encore_entry_script_tags('page_workflow_show') }}
|
|
{{ encore_entry_script_tags('mod_wopi_link') }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ parent() }}
|
|
{{ encore_entry_link_tags('mod_pickentity_type') }}
|
|
{{ encore_entry_link_tags('mod_entity_workflow_subscribe') }}
|
|
{{ encore_entry_link_tags('page_workflow_show') }}
|
|
{{ encore_entry_link_tags('mod_wopi_link') }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-10 workflow">
|
|
<h1 class="mb-5">{{ block('title') }}</h1>
|
|
|
|
{# handler_template:
|
|
- src/Bundle/ChillPersonBundle/Resources/views/Workflow/_evaluation.html.twig
|
|
- src/Bundle/ChillPersonBundle/Resources/views/Workflow/_accompanying_period_work.html.twig
|
|
- src/Bundle/ChillDocStoreBundle/Resources/views/AccompanyingCourseDocument/_workflow.html.twig
|
|
#}
|
|
<section class="step my-4">
|
|
<div class="mb-5">
|
|
{% include handler_template_title with handler_template_data|merge({'breadcrumb': true }) %}
|
|
</div>
|
|
{% include handler_template with handler_template_data|merge({'display_action': true }) %}
|
|
</section>
|
|
|
|
<section class="step my-4">{% include '@ChillMain/Workflow/_follow.html.twig' %}</section>
|
|
<section class="step my-4">{% include '@ChillMain/Workflow/_decision.html.twig' %}</section>{#
|
|
<section class="step my-4">{% include '@ChillMain/Workflow/_comment.html.twig' %}</section> #}
|
|
<section class="step my-4">{% include '@ChillMain/Workflow/_history.html.twig' %}</section>
|
|
|
|
{# useful ?
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="cancel">
|
|
<a class="btn btn-cancel" href="{{ path('chill_main_workflow_list_dest') }}">
|
|
{{ 'Back to the list'|trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
#}
|
|
</div>
|
|
{% endblock %}
|