27 lines
896 B
Plaintext
27 lines
896 B
Plaintext
<div class="row">
|
|
<div class="small-12 column">
|
|
|
|
<% if @poll.questions.empty? %>
|
|
<div class="callout primary text-center">
|
|
<%= t('admin.polls.show.no_questions') %>
|
|
</div>
|
|
<% else %>
|
|
<table>
|
|
<% @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('shared.edit'),
|
|
edit_admin_question_path(question),
|
|
class: "button hollow" %>
|
|
<%= link_to t('shared.delete'),
|
|
admin_question_path(question),
|
|
class: "button hollow alert",
|
|
method: :delete %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
<% end %>
|
|
</div>
|
|
</div> |