_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. <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. |map(game => game.name)
  31. |join(', ')
  32. }}
  33. </p>
  34. </div>
  35. </div>
  36. </article>
  37. {% if is_granted('ROLE_MANAGER') or is_granted('ROLE_ADMIN') %}
  38. <div class="columns">
  39. {% if gamemaster.phone %}
  40. <div class="column has-text-centered">
  41. <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>
  42. </div>
  43. <div class="column has-text-centered">
  44. <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>
  45. </div>
  46. {% endif %}
  47. <div class="column has-text-centered">
  48. <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>
  49. </div>
  50. </div>
  51. {% endif %}
  52. {% endblock %}