diff --git a/app/views/users/_proposal.html.erb b/app/views/users/_proposal.html.erb
index f5a361c19..cd41de6f8 100644
--- a/app/views/users/_proposal.html.erb
+++ b/app/views/users/_proposal.html.erb
@@ -5,15 +5,16 @@
<%= proposal.summary %>
- <% if author?(proposal) %>
+ <% if proposal.retired? %>
+
<%= link_to t("users.proposals.send_notification"),
new_proposal_notification_path(proposal_id: proposal.id),
class: 'button hollow' %>
|
- <% end %>
- <% if author?(proposal) || proposal.retired? %>
+ <% elsif author?(proposal) %>
+
<% if proposal.retired? %>
<%= t('users.proposals.retired') %>
@@ -23,6 +24,7 @@
class: 'button hollow alert' %>
<% end %>
|
+
<% end %>