templates/partials/grimoire/show-tokens.html.twig line 1

Open in your IDE?
  1. <button type="button" class="button button--full-height" id="show-tokens" data-dialog="#token-list" disabled>{{ 'grimoire.grimoire.show_tokens'|trans }}</button>
  2. {% embed 'includes/dialog.html.twig' with {
  3.     id: 'token-list',
  4.     background: 'blur',
  5.     title: 'grimoire.token_list.title'|trans
  6. } %}
  7.     {% block body %}
  8.         <ul id="token-list__list" class="button-list button-list--reminder"></ul>
  9.     {% endblock %}
  10. {% endembed %}
  11. <template id="token-list-template">
  12.     <li class="js--token-list--item">
  13.         <button type="button" class="no-btn w-full js--token-list--button">
  14.             <span class="character-list__token js--token-list--token"></span>
  15.         </button>
  16.     </li>
  17. </template>