mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-29 18:14:59 +00:00
Create internal and external animators
This commit is contained in:
@@ -65,9 +65,17 @@
|
||||
<td>{{ event.moderator|chill_entity_render_string }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{ 'Animators'|trans }}</th>
|
||||
<th>{{ 'event.animators.intern'|trans }}</th>
|
||||
<td>
|
||||
{% for a in event.animators %}
|
||||
{% for a in event.animatorsIntern %}
|
||||
{{ _self.insert_onthefly('user', a) }}
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{ 'event.animators.extern'|trans }}</th>
|
||||
<td>
|
||||
{% for a in event.animatorsExtern %}
|
||||
{{ _self.insert_onthefly('thirdparty', a) }}
|
||||
{% endfor %}
|
||||
</td>
|
||||
@@ -153,7 +161,7 @@
|
||||
</tfoot>
|
||||
</table>
|
||||
{% else %}
|
||||
<p class="chill-no-data-statement">{{ 'event.budget.no elements' }}</p>
|
||||
<p class="chill-no-data-statement">{{ 'event.budget.no elements'|trans }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
@@ -180,7 +188,7 @@
|
||||
<div class="participations-wrapper">
|
||||
<h2>{{ 'Participations'|trans }}</h2>
|
||||
{% set count = event.participations|length %}
|
||||
<p>{{ 'count participations to this event'|trans({'count': count}) }}</p>
|
||||
<p class="chill-no-data-statement">{{ 'count participations to this event'|trans({'count': count}) }}</p>
|
||||
|
||||
{% if count > 0 %}
|
||||
<table class="table table-bordered border-dark align-middle">
|
||||
|
Reference in New Issue
Block a user