Files
grecia/app/views/polls/questions/_question.html.erb
2019-03-19 12:33:07 +01:00

10 lines
254 B
Plaintext

<div id="<%= dom_id(question) %>" class="poll-question">
<h3>
<%= question.title %>
</h3>
<div id="<%= dom_id(question) %>_answers" class="padding">
<%= render "polls/questions/answers", question: question, token: token %>
</div>
</div>