mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 10:59:45 +00:00
44 lines
2.4 KiB
Twig
44 lines
2.4 KiB
Twig
<h2>{{ 'workflow.signature_zone.title'|trans }}</h2>
|
|
|
|
<div class="container">
|
|
{% for s in signatures %}
|
|
<div class="row row-hover align-items-center">
|
|
<div class="col-sm-12 col-md-8">
|
|
{% if s.signerKind == 'person' %}
|
|
{% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
|
|
action: 'show', displayBadge: true,
|
|
targetEntity: { name: 'person', id: s.signer.id },
|
|
buttonText: s.signer|chill_entity_render_string,
|
|
isDead: s.signer.deathDate is not null
|
|
} %}
|
|
{% else %}
|
|
{% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
|
|
action: 'show', displayBadge: true,
|
|
targetEntity: { name: 'user', id: s.signer.id },
|
|
buttonText: s.signer|chill_entity_render_string,
|
|
} %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="col-sm-12 col-md-4">
|
|
{% if s.isSigned %}
|
|
<span class="text-end">{{ 'workflow.signature_zone.has_signed_statement'|trans({ 'datetime' : s.stateDate }) }}</span>
|
|
{% else %}
|
|
{% if is_granted('CHILL_MAIN_ENTITY_WORKFLOW_SIGNATURE_SIGN', s) %}
|
|
<ul class="record_actions slim">
|
|
<li>
|
|
<a class="btn btn-misc" href="{{ chill_path_add_return_path('chill_main_workflow_signature_metadata', { 'signature_id': s.id}) }}"><i class="fa fa-pencil-square-o"></i> {{ 'workflow.signature_zone.button_sign'|trans }}</a>
|
|
{% if s.state is same as('signed') %}
|
|
<p class="updatedBy">{{ s.stateDate }}</p>
|
|
{% endif %}
|
|
</li>
|
|
</ul>
|
|
{% else %}
|
|
<span class="text-end">{{ 'workflow.waiting_for_signature'|trans }}</span>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|