|
@@ -13,6 +13,7 @@
|
|
|
<button>
|
|
|
<span><strong>{{ event.name }} - du {{ event.startOn|date('d/m/y à H:i', app_timezone) }} au {{ event.endOn|date('d/m/y à H:i', app_timezone)}}</strong></span>
|
|
|
</button>
|
|
|
+ {% if events|length > 1 %}
|
|
|
<span class="icon is-small">
|
|
|
<twig:ux:icon name="bi:chevron-down" />
|
|
|
</span>
|
|
@@ -25,6 +26,7 @@
|
|
|
{% endfor %}
|
|
|
</div>
|
|
|
</div>
|
|
|
+ {% endif %}
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -45,9 +47,9 @@
|
|
|
<p class="is-inline-block icon-text">{{ event.getGamemastersAssigned|length }} meneur(euse)s de jeu
|
|
|
{% for gamemaster in event.getGamemastersAssigned %}
|
|
|
<span class="icon">
|
|
|
- <a href="{{ path('app_gamemaster_public_profile', {id: gamemaster.id}) }}" class="open-modal"><figure class="image is-24x24 is-inline-block">
|
|
|
+ <a href="{{ path('app_gamemaster_public_profile', {id: gamemaster.id}) }}" class="open-modal" title="{{ gamemaster.preferedName }}"><figure class="image is-24x24 is-inline-block">
|
|
|
{% if gamemaster.picture %}
|
|
|
- <img class="is-rounded" src="/images/gamemasters/{{ gamemaster.picture }}" />
|
|
|
+ <img class="is-rounded" src="/images/gamemasters/{{ gamemaster.picture }}" alt="{{ gamemaster.preferedName }}"/>
|
|
|
{% else %}
|
|
|
<twig:ux:icon name="bi:person-fill"/>
|
|
|
{% endif %}
|