25 lines
604 B
Plaintext
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 %>
|