You are here

poll-vote--advanced.html.twig in Advanced Poll 8

{#
/**
 */
#}
{{ form.messages }}
<div class="poll">
  <div class="vote-form">
    {% if show_question %}
      <h3 class="poll-question">{{ question }}</h3>
    {% endif %}

    {{ form.choice }}
    {{ form.write_in }}

    {{ form.actions }}
  </div>
{{ form|without('actions', 'choice', 'messages', 'question', 'write_in') }}
</div>

File

templates/poll-vote--advanced.html.twig
View source
  1. {#
  2. /**
  3. */
  4. #}
  5. {{ form.messages }}
  6. <div class="poll">
  7. <div class="vote-form">
  8. {% if show_question %}
  9. <h3 class="poll-question">{{ question }}</h3>
  10. {% endif %}
  11. {{ form.choice }}
  12. {{ form.write_in }}
  13. {{ form.actions }}
  14. </div>
  15. {{ form|without('actions', 'choice', 'messages', 'question', 'write_in') }}
  16. </div>