mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-02 21:13:57 +00:00
improve report view
This commit is contained in:
@@ -21,6 +21,8 @@
|
||||
{% block title %}{{ 'Report view' |trans() }}{% endblock title %}
|
||||
|
||||
{% block personcontent %}
|
||||
|
||||
<h1>{{ 'Report view : %name%' | trans({ '%name%' : entity.cFGroup.getName|localize_translatable_string } ) }}</h1>
|
||||
|
||||
<h2 class="chill-red">{{ 'Details'|trans }}</h2>
|
||||
|
||||
@@ -33,12 +35,14 @@
|
||||
<dd>{{ entity.date|localizeddate('long', 'none') }}</dd>
|
||||
<dt>{{ 'User'|trans }} :</dt>
|
||||
<dd>{{ entity.user }}</dd>
|
||||
<dt>{{ 'Report type'|trans }} :</dt>
|
||||
<dd>{{ entity.cFGroup.getName(app.request.locale) }}</dd>
|
||||
|
||||
{{ chill_custom_fields_group_widget(entity.cFData, entity.cFGroup) }}
|
||||
|
||||
</dl>
|
||||
|
||||
<h2 class="chill-red">{{ 'Report data'|trans }}</h2>
|
||||
|
||||
<dl class="chill_report_view_data">
|
||||
{{ chill_custom_fields_group_widget(entity.cFData, entity.cFGroup) }}
|
||||
</dl>
|
||||
{% if is_granted('CHILL_REPORT_UPDATE', entity) %}
|
||||
<a class="sc-button bt-update" href="{{ path('report_edit', { 'person_id': entity.person.id, 'report_id': entity.id }) }}"><i class="fa fa-pencil"></i> {{ 'Update the report' | trans }}</a>
|
||||
{% endif %}
|
||||
|
@@ -12,7 +12,7 @@
|
||||
{% if custom_fields_in_summary|length > 0 %}
|
||||
<div class="summary">
|
||||
<hr/>
|
||||
<dl>
|
||||
<dl class="chill_report_view_data timeline">
|
||||
{% for field in custom_fields_in_summary %}
|
||||
{% if field.type == 'title' %}
|
||||
{{ chill_custom_field_widget(report.cFData, field) }}
|
||||
|
Reference in New Issue
Block a user