mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
93 lines
4.1 KiB
Twig
93 lines
4.1 KiB
Twig
{#
|
|
* Copyright (C) 2014, Champs Libres Cooperative SCRLFS, <http://www.champs-libres.coop>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#}
|
|
{% extends "@ChillPerson/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_activity_activity_list' %}
|
|
|
|
{% block title %}{{ 'Activity list' |trans }}{% endblock title %}
|
|
|
|
{% block personcontent %}
|
|
<h2>{{ 'Activity list' |trans }}</h2>
|
|
|
|
{% 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}) }}" class="sc-button bt-create button-small"></a>
|
|
</p>
|
|
{% else %}
|
|
<table class="records_list">
|
|
<thead>
|
|
<tr>
|
|
<th class="chill-red">{{'Date' | trans }}</th>
|
|
<th class="chill-green">{{'Duration Time' | trans }}</th>
|
|
<th class="chill-orange">{{'Reasons' | trans}}</th>
|
|
<th>{{'Type' | trans}}</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for activity in activities %}
|
|
<tr>
|
|
<td>{% if activity.date %}{{ activity.date|format_date('long', 'none') }}{% endif %}</td>
|
|
<td>{{ activity.durationTime|date('H:i') }}</td>
|
|
<td>
|
|
{% if activity.remark is not empty %}
|
|
<blockquote class="chill-user-quote">
|
|
{{ activity.remark|slice(0, 250) }} {#
|
|
sf4 check: if 'slice' could replace 'truncate' filter ?
|
|
truncate come with twig-extensions, in conflict with twig 3
|
|
#}
|
|
</blockquote>
|
|
{% endif %}
|
|
{%- if activity.reasons is empty -%}
|
|
{{ 'No reason associated'|trans }}
|
|
{%- else -%}
|
|
{% for r in activity.reasons %}{{ r|chill_entity_render_box }} {% endfor %}
|
|
{%- endif -%}
|
|
</td>
|
|
<td>{{ activity.type.name | localize_translatable_string }}</td>
|
|
<td>
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_show', { 'id': activity.id, 'person_id': person.id }) }}" class="sc-button bt-show "></a>
|
|
</li>
|
|
{% if is_granted('CHILL_ACTIVITY_UPDATE', activity) %}
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_edit', { 'id': activity.id, 'person_id': person.id }) }}" class="sc-button bt-update "></a>
|
|
</li>
|
|
{% endif %}
|
|
{% if is_granted('CHILL_ACTIVITY_DELETE', activity) %}
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_delete', { 'id': activity.id, 'person_id' : person.id } ) }}" class="sc-button bt-delete "></a>
|
|
</li>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('chill_activity_activity_new', {'person_id': person.id}) }}" class="sc-button bt-create">
|
|
{{ 'Add a new activity' | trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
{% endblock %}
|