mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
Merge branch 'master' of git://github.com/Chill-project/Report
This commit is contained in:
@@ -11,4 +11,11 @@ services:
|
||||
calls:
|
||||
- [setContainer, ["@service_container"]]
|
||||
tags:
|
||||
- { name: chill.search, alias: 'report' }
|
||||
- { name: chill.search, alias: 'report' }
|
||||
|
||||
chill.report.timeline:
|
||||
class: Chill\ReportBundle\Timeline\TimelineReportProvider
|
||||
arguments:
|
||||
- '@doctrine.orm.entity_manager'
|
||||
tags:
|
||||
- { name: chill.timeline, context: 'person' }
|
@@ -32,4 +32,7 @@ User: Utilisateur
|
||||
'You may not set a date argument and a date in default': Vous avez introduit deux dates, l'une avec l'argument date et l'autre en zone de recherche par défaut. Merci d'indiquer l'un ou l'autre
|
||||
'You must provide either a date:YYYY-mm-dd argument or a YYYY-mm-dd default search': Merci d'indiquer soit un argument date:YYYY-mm-dd, soit une date dans la recherche par défaut.
|
||||
'Reports search results': Recherche dans les rapports
|
||||
'%total% reports matching the search "%pattern%"': '{0} Aucun rapport ne correspond à la recherche "%pattern%" | {1} Un rapport correspond à la recherche "%pattern%" | ]1,Inf]%total% rapports correspondent à la recherche "%pattern%"'
|
||||
'%total% reports matching the search "%pattern%"': '{0} Aucun rapport ne correspond à la recherche "%pattern%" | {1} Un rapport correspond à la recherche "%pattern%" | ]1,Inf]%total% rapports correspondent à la recherche "%pattern%"'
|
||||
|
||||
#timeline
|
||||
'%user% has filled a %report_label% report on %date%': %user% a ajouté un rapport '%report_label%' le %date%
|
23
Resources/views/Timeline/report_person_context.html.twig
Normal file
23
Resources/views/Timeline/report_person_context.html.twig
Normal file
@@ -0,0 +1,23 @@
|
||||
<div class="report">
|
||||
<div class="statement">
|
||||
<span class="statement">{{ '%user% has filled a %report_label% report on %date%'|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>
|
||||
</div>
|
||||
{% if custom_fields_in_summary|length > 0 %}
|
||||
<div class="summary">
|
||||
{% for field in custom_fields_in_summary %}
|
||||
{% if field.type == 'title' %}
|
||||
{{ chill_custom_field_widget(report.cFData, field) }}
|
||||
{% else %}
|
||||
<dt>{{ chill_custom_field_label(field) }}</dt>
|
||||
<dd>{{ chill_custom_field_widget(report.cFData, field) }}</dd>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
Reference in New Issue
Block a user