mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-04 05:44:58 +00:00
layout of timeline
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
<div class="report_entry">
|
||||
<h3>{{ report.date|localizeddate('long', 'none') }}<span class="report"> / {{ 'Report'|trans }}</span></h3>
|
||||
<div class="statement">
|
||||
<span class="statement">{{ '%user% has filled a %report_label% report on %date%'|trans(
|
||||
<span class="statement">{{ '%user% has filled a %report_label% report'|trans(
|
||||
{
|
||||
'%user%' : user,
|
||||
'%report_label%': report.CFGroup.name|localize_translatable_string,
|
||||
'%date%' : report.date|localizeddate('long', 'none') }
|
||||
) }}</span> <span class="links"><a href="{{ path('report_view',
|
||||
{ 'person_id': person.id, 'report_id': report.id} ) }}">{{ 'View the report'|trans }}</a></span>
|
||||
) }}</span>
|
||||
</div>
|
||||
{% if custom_fields_in_summary|length > 0 %}
|
||||
<div class="summary">
|
||||
@@ -23,4 +22,19 @@
|
||||
</dl>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<ul class="record_actions">
|
||||
<li>
|
||||
<a href="{{ path('report_view', { 'person_id': person.id, 'report_id': report.id} ) }}" class="sc-button bt-view">
|
||||
{{ 'View the report'|trans }}
|
||||
</a>
|
||||
</li>
|
||||
{% if is_granted('CHILL_REPORT_UPDATE', report) %}
|
||||
<li>
|
||||
<a href="{{ path('report_edit', { 'person_id': person.id, 'report_id': report.id} ) }}" class="sc-button bt-edit">
|
||||
{{ 'Update the report'|trans }}
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user