Files
grecia/app/views/admin/poll/questions/_successful_proposals.html.erb
2017-02-09 18:48:06 +01:00

27 lines
766 B
Plaintext

<table class="fixed">
<thead>
<tr>
<th><%= t('admin.questions.index.table_proposal') %></th>
<th class="text-right"><%= t("admin.actions.actions") %></th>
</tr>
</thead>
<tbody>
<% @proposals.each do |proposal| %>
<tr id="<%= dom_id(proposal) %>">
<td>
<%= link_to proposal.title, proposal_path(proposal) %>
<p>
<%= proposal.summary %><br>
<strong><%= proposal.question %></strong>
</p>
</td>
<td class="text-right">
<%= link_to t("admin.questions.index.create_question"),
new_admin_question_path(proposal_id: proposal.id),
class: "button hollow" %>
</td>
</tr>
<% end %>
</tbody>
</table>