Files
nairobi/app/views/admin/poll/questions/_successful_proposals.html.erb
2019-05-09 12:58:14 +02:00

26 lines
690 B
Plaintext

<table class="fixed">
<thead>
<tr>
<th class="small-9"><%= t("admin.questions.index.table_proposal") %></th>
<th><%= 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>
</p>
</td>
<td>
<%= link_to t("admin.questions.index.create_question"),
new_admin_question_path(proposal_id: proposal.id),
class: "button hollow" %>
</td>
</tr>
<% end %>
</tbody>
</table>