fixes table on users proposal list

This commit is contained in:
decabeza
2017-08-25 12:12:21 +02:00
parent 7d95edf93e
commit f9e5086a95
3 changed files with 13 additions and 5 deletions

View File

@@ -7,28 +7,34 @@
<% if proposal.retired? %>
<td class="text-center">
<td class="text-center" colspan="2">
<span class="label alert"><%= t('users.proposals.retired') %></span>
</td>
<% elsif author?(proposal) %>
<td class="text-center">
<td>
<%= link_to t("users.proposals.send_notification"),
new_proposal_notification_path(proposal_id: proposal.id),
class: 'button hollow' %>
class: 'button hollow expanded' %>
</td>
<td class="text-center">
<td>
<% if proposal.retired? %>
<span class="label alert"><%= t('users.proposals.retired') %></span>
<% else %>
<%= link_to t('users.proposals.retire'),
retire_form_proposal_path(proposal),
class: 'button hollow alert' %>
class: 'button hollow alert expanded' %>
<% end %>
</td>
<% else %>
<td class="text-center" colspan="2">
<%= link_to t('users.proposals.see'), proposal, class: 'button hollow' %>
</td>
<% end %>
</tr>