_modal.gamemaster.html.twig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {% extends 'modal.html.twig' %}
  2. {% block title %}{{ gamemaster.preferedName }}{% endblock %}
  3. {% block content %}
  4. <article class="media">
  5. <figure class="media-left">
  6. <p class="image is-128x128">
  7. {% if gamemaster.picture %}
  8. <img class="is-rounded" src="/images/gamemasters/{{ gamemaster.picture }}" />
  9. {% else %}
  10. <twig:ux:icon name="bi:person-fill"/>
  11. {% endif %}
  12. </p>
  13. </figure>
  14. <div class="media-content">
  15. <div class="content">
  16. <p>
  17. {{ gamemaster.description }}
  18. </p>
  19. {% if gamemaster.isAuthor %}
  20. <p>
  21. <em>Je suis auteur(rice) des jeux suivants : </em><br/>
  22. {{ gamemaster.authorOfGames|map(game => game.name)|join(', ') }}
  23. </p>
  24. {% endif %}
  25. {% if is_granted('ROLE_MANAGER') %}
  26. <hr/>
  27. <p>
  28. <em>Je peux animer des parties des jeux suivants : </em><br/>
  29. {# TODO: limiter aux jeux dispo dans l'événement #}
  30. {{ gamemaster.gamesCanMaster
  31. |map(game => game.name)
  32. |join(', ')
  33. }}
  34. </p>
  35. {% endif %}
  36. </div>
  37. </div>
  38. </article>
  39. {% if is_granted('ROLE_MANAGER') or is_granted('ROLE_ADMIN') %}
  40. <div class="columns">
  41. {% if gamemaster.phone %}
  42. <div class="column has-text-centered">
  43. <a class="button is-primary" href="tel:{{ gamemaster.phone }}"><span class="icon-text"><span class="icon mr-3"><twig:ux:icon name="bi:telephone-fill"/></span>Appel</a>
  44. </div>
  45. <div class="column has-text-centered">
  46. <a class="button is-primary" href="sms:{{ gamemaster.phone }}"><span class="icon-text"><span class="icon mr-3"><twig:ux:icon name="bi:envelope"/></span>SMS</a>
  47. </div>
  48. {% endif %}
  49. <div class="column has-text-centered">
  50. <a class="button is-primary" href="mailto:{{ gamemaster.email }}"><span class="icon-text"><span class="icon mr-3"><twig:ux:icon name="bi:envelope-fill"/></span>Mail</a>
  51. </div>
  52. </div>
  53. {% endif %}
  54. {% endblock %}