minor changes

This commit is contained in:
2019-05-02 19:27:31 +02:00
parent 8c3c9c4a1f
commit ad45e71051
4 changed files with 12 additions and 5 deletions

View File

@@ -27,8 +27,8 @@
<table class="events">
<thead>
<tr>
<th class="chill-red">{{ 'Name'|trans }}</th>
<th class="chill-green">{{ 'Date'|trans }}</th>
<th class="chill-red">{{ 'Name'|trans }}</th>
<th class="chill-orange">{{ 'Event type'|trans }}</th>
<th class="chill-red">{{ 'Role'|trans }}</th>
<th class="chill-green">{{ 'Status'|trans }}</th>
@@ -38,8 +38,8 @@
<tbody>
{% for participation in participations %}
<tr>
<td>{{ participation.event.name }}</td>
<td>{{ participation.event.date|localizeddate('long', 'short') }}</td>
<td>{{ participation.event.name }}</td>
<td>{{ participation.event.type.name|localize_translatable_string }}</td>
<td>{{ participation.role.name|localize_translatable_string }}</td>
<td>{{ participation.status.name|localize_translatable_string }}</td>