mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 22:04:23 +00:00
improve report view
This commit is contained in:
parent
ef718fe93a
commit
b672074823
@ -9,12 +9,15 @@
|
||||
'Report list': 'Liste des rapports'
|
||||
Details: Détails
|
||||
Person: Personne
|
||||
Scope: Scope
|
||||
Scope: Cercle
|
||||
Date: Date
|
||||
User: Utilisateur
|
||||
'Report type': 'Type de rapport'
|
||||
'View the report': "Voir le rapport"
|
||||
'Update the report': "Mettre à jour le rapport"
|
||||
Report data: Données du rapport
|
||||
'Report view : %name%': 'Rapport : %name%'
|
||||
Report: Rapport
|
||||
|
||||
#Flash messages
|
||||
'Success : report created!': "Succès : le rapport a bien été créé !"
|
||||
|
@ -22,6 +22,8 @@
|
||||
|
||||
{% block personcontent %}
|
||||
|
||||
<h1>{{ 'Report view : %name%' | trans({ '%name%' : entity.cFGroup.getName|localize_translatable_string } ) }}</h1>
|
||||
|
||||
<h2 class="chill-red">{{ 'Details'|trans }}</h2>
|
||||
|
||||
<dl>
|
||||
@ -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) }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user