You are here

poll-vote.html.twig in Poll 8

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

    {{ form.choice }}

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

File

templates/poll-vote.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.actions }}
  13. </div>
  14. {{ form|without('actions', 'choice', 'messages', 'question') }}
  15. </div>