Files
grecia/app/views/admin/poll/polls/_questions.html.erb
María Checa e464985114 Minor fix
Removed unnecessary markdown
2017-10-02 20:34:38 +02:00

25 lines
604 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="fixed margin">
<thead>
<tr>
<th><%= t('admin.polls.show.table_title') %></th>
</tr>
</thead>
<% @poll.questions.each do |question| %>
<tr id="<%= dom_id(question) %>">
<td>
<strong>
<%= link_to question.title, admin_question_path(question) %>
</strong>
</td>
</tr>
<% end %>
</table>
<% end %>