22 lines
734 B
Plaintext
22 lines
734 B
Plaintext
<h3><%= t("admin.polls.show.questions_title") %></h3>
|
|
|
|
<% if @poll.questions.empty? %>
|
|
<div class="callout primary margin-top">
|
|
<%= t('admin.polls.show.no_questions') %>
|
|
</div>
|
|
<% else %>
|
|
<table class="margin-top">
|
|
<% @poll.questions.each do |question| %>
|
|
<tr id="<%= dom_id(question) %>">
|
|
<td><%= link_to question.title, admin_question_path(question) %></td>
|
|
<td class="text-right">
|
|
<%= link_to t('admin.polls.show.remove_question'),
|
|
remove_question_admin_poll_path(poll_id: @poll.id, question_id: question.id),
|
|
class: "button hollow alert",
|
|
method: :patch %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
<% end %>
|