diff --git a/app/views/users/_proposal.html.erb b/app/views/users/_proposal.html.erb
index 9144de099..1addf5511 100644
--- a/app/views/users/_proposal.html.erb
+++ b/app/views/users/_proposal.html.erb
@@ -7,28 +7,34 @@
<% if proposal.retired? %>
-
+ |
<%= t('users.proposals.retired') %>
|
<% elsif author?(proposal) %>
-
+ |
<%= link_to t("users.proposals.send_notification"),
new_proposal_notification_path(proposal_id: proposal.id),
- class: 'button hollow' %>
+ class: 'button hollow expanded' %>
|
-
+ |
<% if proposal.retired? %>
<%= t('users.proposals.retired') %>
<% else %>
<%= link_to t('users.proposals.retire'),
retire_form_proposal_path(proposal),
- class: 'button hollow alert' %>
+ class: 'button hollow alert expanded' %>
<% end %>
|
+ <% else %>
+
+
+ <%= link_to t('users.proposals.see'), proposal, class: 'button hollow' %>
+ |
+
<% end %>
diff --git a/config/locales/en/general.yml b/config/locales/en/general.yml
index aea5c65c8..7e4583e95 100644
--- a/config/locales/en/general.yml
+++ b/config/locales/en/general.yml
@@ -675,6 +675,7 @@ en:
send_notification: "Send notification"
retire: "Retire"
retired: "Retired"
+ see: "See proposal"
votes:
agree: I agree
anonymous: Too many anonymous votes to admit vote %{verify_account}.
diff --git a/config/locales/es/general.yml b/config/locales/es/general.yml
index 6a3972128..c3d838061 100644
--- a/config/locales/es/general.yml
+++ b/config/locales/es/general.yml
@@ -675,6 +675,7 @@ es:
send_notification: "Enviar notificación"
retire: "Retirar"
retired: "Retirada"
+ see: "Ver propuesta"
votes:
agree: Estoy de acuerdo
anonymous: Demasiados votos anónimos, para poder votar %{verify_account}.