mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
187 lines
9.4 KiB
Twig
187 lines
9.4 KiB
Twig
<div class="activity-list context-{{ context }}">
|
|
|
|
{% if activities|length == 0 %}
|
|
<p class="chill-no-data-statement">
|
|
{{ "There isn't any activities."|trans }}
|
|
<a href="{{ path('chill_activity_activity_new', {'person_id': person_id, 'accompanying_period_id': accompanying_course_id}) }}" class="btn btn-sm btn-create"></a>
|
|
</p>
|
|
|
|
{% else %}
|
|
<div class="flex-table">
|
|
{% for activity in activities %}
|
|
{% set t = activity.type %}
|
|
<div class="item-bloc">
|
|
<div class="item-row main">
|
|
<div class="item-col">
|
|
|
|
{% if activity.date %}
|
|
<h3>{{ activity.date|format_date('long') }}</h3>
|
|
{% endif %}
|
|
|
|
<div class="duration">
|
|
{% if t.durationTimeVisible > 0 %}
|
|
<p>
|
|
<i class="fa fa-fw fa-hourglass-end"></i>
|
|
{{ activity.durationTime|date('H:i') }}
|
|
</p>
|
|
{% endif %}
|
|
{% if activity.travelTime and t.travelTimeVisible %}
|
|
<p>
|
|
<i class="fa fa-fw fa-car"></i>
|
|
{{ activity.travelTime|date('H:i') }}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if context == 'person' and activity.accompanyingPeriod is not empty %}
|
|
<div class="mt-3">
|
|
<a class="btn btn-sm btn-outline-primary"
|
|
title="{{ 'Period number %number%'|trans({'%number%': activity.accompanyingPeriod.id}) }}"
|
|
href="{{ chill_path_add_return_path(
|
|
"chill_person_accompanying_course_index",
|
|
{ 'accompanying_period_id': activity.accompanyingPeriod.id }
|
|
) }}"><i class="fa fa-random"></i>
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
<div class="item-col">
|
|
|
|
<div class="float-button top">
|
|
<div class="box">
|
|
|
|
<div class="action">
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_show', { 'id': activity.id, 'person_id': person_id, 'accompanying_period_id': accompanying_course_id }) }}"
|
|
class="btn btn-sm btn-show "></a>
|
|
</li>
|
|
{% if no_action is not defined or no_action == false %}
|
|
{# TODO
|
|
{% if is_granted('CHILL_ACTIVITY_UPDATE', activity) %}
|
|
#}
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_edit', { 'id': activity.id, 'person_id': person_id, 'accompanying_period_id': accompanying_course_id }) }}"
|
|
class="btn btn-sm btn-update "></a>
|
|
</li>
|
|
{# TODO
|
|
{% endif %}
|
|
{% if is_granted('CHILL_ACTIVITY_DELETE', activity) %}
|
|
#}
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_delete', { 'id': activity.id, 'person_id' : person_id, 'accompanying_period_id': accompanying_course_id } ) }}"
|
|
class="btn btn-sm btn-delete "></a>
|
|
</li>
|
|
{# TODO
|
|
{% endif %}
|
|
#}
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
|
|
<ul class="list-content">
|
|
|
|
{% if activity.user and t.userVisible %}
|
|
<li>
|
|
<abbr class="referrer" title="{{ 'Referrer'|trans }}">ref:</abbr>
|
|
<b>{{ activity.user.usernameCanonical }}</b>
|
|
</li>
|
|
{% endif %}
|
|
|
|
<li>
|
|
<b>{{ activity.type.name | localize_translatable_string }}</b>
|
|
|
|
{% if activity.attendee is not null and t.attendeeVisible %}
|
|
{% if activity.attendee %}
|
|
{{ '→ ' ~ 'present'|trans|capitalize }}
|
|
{% else %}
|
|
{{ '→ ' ~ 'not present'|trans|capitalize }}
|
|
{% endif %}
|
|
{% endif %}
|
|
</li>
|
|
|
|
<li>
|
|
<b>{{ 'location'|trans ~ ': ' }}</b>
|
|
Domicile de l'usager
|
|
|
|
{# TODO {% if activity.location %}{{ activity.location }}{% endif %}
|
|
#}
|
|
|
|
</li>
|
|
|
|
{%- if t.reasonsVisible -%}
|
|
<li>
|
|
{%- if activity.reasons is not empty -%}
|
|
{% for r in activity.reasons %}
|
|
{{ r|chill_entity_render_box }}
|
|
{% endfor %}
|
|
{%- endif -%}
|
|
</li>
|
|
{% endif %}
|
|
|
|
{%- if t.socialIssuesVisible %}
|
|
<li class="social-issues">
|
|
{%- if activity.socialIssues is not empty -%}
|
|
{% for r in activity.socialIssues %}
|
|
{{ r|chill_entity_render_box }}
|
|
{% endfor %}
|
|
{%- endif -%}
|
|
</li>
|
|
{% endif %}
|
|
|
|
{%- if t.socialActionsVisible -%}
|
|
<li class="social-actions">
|
|
{%- if activity.socialActions is not empty -%}
|
|
{% for r in activity.socialActions %}
|
|
{{ r|chill_entity_render_box }}
|
|
{% endfor %}
|
|
{%- endif -%}
|
|
</li>
|
|
{% endif %}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% if activity.comment.comment is not empty
|
|
or activity.persons|length > 0
|
|
or activity.thirdParties|length > 0
|
|
or activity.users|length > 0
|
|
%}
|
|
<div class="item-row comment separator">
|
|
{% if activity.comment.comment is not empty %}
|
|
{{ activity.comment|chill_entity_render_box({
|
|
'disable_markdown': false,
|
|
'limit_lines': 3,
|
|
'metadata': false,
|
|
}) }}
|
|
{% endif %}
|
|
</div>
|
|
<div class="item-row details">
|
|
{% include 'ChillActivityBundle:Activity:concernedGroups.html.twig' with {
|
|
'context': context,
|
|
'with_display': 'bloc',
|
|
'entity': activity,
|
|
'badge_person': true
|
|
} %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|