mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
130 lines
5.3 KiB
Twig
130 lines
5.3 KiB
Twig
<div class="item-bloc accompanying_course_work-item{% if itemBlocClass is defined %} {{ itemBlocClass }}{% endif %}">
|
|
|
|
<div class="item-row">
|
|
<h2 class="badge-title">
|
|
<span class="title_label"></span>
|
|
<span class="title_action">{{ w.socialAction|chill_entity_render_string }}
|
|
|
|
<ul class="small_in_title columns mt-1">
|
|
<li>
|
|
<span class="item-key">{{ 'accompanying_course_work.start_date'|trans ~ ' : ' }}</span>
|
|
<b>{{ w.startDate|format_date('short') }}</b>
|
|
</li>
|
|
{% if w.endDate %}
|
|
<li>
|
|
<span class="item-key">{{ 'accompanying_course_work.end_date'|trans ~ ' : ' }}</span>
|
|
<b>{{ w.endDate|format_date('short') }}</b>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
</span>
|
|
</h2>
|
|
</div>
|
|
|
|
<div class="item-row separator">
|
|
<div class="wrap-list">
|
|
|
|
{% if w.createdBy %}
|
|
<div class="wl-row">
|
|
<div class="wl-col title">
|
|
<h3>{{ 'Referrer'|trans }}</h3>
|
|
</div>
|
|
<div class="wl-col list">
|
|
<p class="wl-item">
|
|
{{ w.createdBy|chill_entity_render_box }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{%- if w.persons -%}
|
|
<div class="wl-row">
|
|
<div class="wl-col title">
|
|
<h3>{{ 'Persons in accompanying course'|trans }}</h3>
|
|
</div>
|
|
<div class="wl-col list">
|
|
{% for p in w.persons %}
|
|
<span class="wl-item">
|
|
{% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
|
|
action: 'show', displayBadge: true,
|
|
targetEntity: { name: 'person', id: p.id },
|
|
buttonText: p|chill_entity_render_string,
|
|
isDead: p.deathdate is not null
|
|
} %}
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{%- if w.handlingThierParty -%}
|
|
<div class="wl-row">
|
|
<div class="wl-col title">
|
|
<h3>{{ 'Thirdparty handling'|trans }}</h3>
|
|
</div>
|
|
<div class="wl-col list">
|
|
<span class="wl-item">
|
|
{% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
|
|
action: 'show', displayBadge: true,
|
|
targetEntity: { name: 'thirdparty', id: w.handlingThierParty.id },
|
|
buttonText: w.handlingThierParty|chill_entity_render_string
|
|
} %}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{%- if w.socialAction.issue -%}
|
|
<div class="wl-row">
|
|
<div class="wl-col title">
|
|
<h3>{{ 'Social issue'|trans }}</h3>
|
|
</div>
|
|
<div class="wl-col list">
|
|
<p class="wl-item social-issues">
|
|
{{ w.socialAction.issue|chill_entity_render_box }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="item-row column">
|
|
{% include 'ChillPersonBundle:AccompanyingCourseWork:_objectifs_results_evaluations.html.twig' %}
|
|
</div>
|
|
|
|
<div class="item-row separator">
|
|
<div class="item-col item-meta">
|
|
{% set notif_counter = chill_count_notifications('Chill\\PersonBundle\\Entity\\AccompanyingPeriod\\AccompanyingPeriodWork', w.id) %}
|
|
{% if notif_counter.total > 0 %}
|
|
{{ chill_counter_notifications('Chill\\PersonBundle\\Entity\\AccompanyingPeriod\\AccompanyingPeriodWork', w.id) }}
|
|
{% endif %}
|
|
|
|
{% import '@ChillPerson/Macro/updatedBy.html.twig' as macro %}
|
|
{{ macro.updatedBy(w) }}
|
|
</div>
|
|
|
|
{% if displayAction is defined and displayAction == true %}
|
|
<div class="item-col">
|
|
{% if is_granted('CHILL_MAIN_ACCOMPANYING_PERIOD_WORK_UPDATE', w) %}
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a class="btn btn-edit" title="{{ 'Edit'|trans }}"
|
|
href="{{ chill_path_add_return_path('chill_person_accompanying_period_work_edit', { 'id': w.id }) }}"
|
|
></a>
|
|
</li>
|
|
<li>
|
|
<a class="btn btn-delete" title="{{ 'Delete'|trans }}"
|
|
href="{{ path('chill_person_accompanying_period_work_delete', { 'id': w.id } ) }}"
|
|
></a>
|
|
</li>
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|