_modal.gamemaster.html.twig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <hr/>
  26. <p>
  27. <em>Je peux animer des parties des jeux suivants : </em><br/>
  28. {# { gamemaster.gamesCanMaster|map(game => game.name)|join(', ') } #}
  29. {{ gamemaster.gamesCanMaster
  30. |filter(game => game in party.event.gamesAssigned)
  31. |map(game => game.name)
  32. |join(', ')
  33. }}
  34. </p>
  35. </div>
  36. </div>
  37. </article>
  38. {% if is_granted('ROLE_MANAGER') or is_granted('ROLE_ADMIN') %}
  39. <div class="columns">
  40. {% if gamemaster.phone %}
  41. <div class="column has-text-centered">
  42. <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>
  43. </div>
  44. <div class="column has-text-centered">
  45. <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>
  46. </div>
  47. {% endif %}
  48. <div class="column has-text-centered">
  49. <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>
  50. </div>
  51. </div>
  52. {% endif %}
  53. {% endblock %}