Files
nairobi/app/views/polls/questions/_question.html.erb

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>