summaryrefslogtreecommitdiff
path: root/app/views/sent_notifications
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-09-20 09:52:06 +0200
committerRémy Coutable <remy@rymai.me>2016-09-20 12:24:53 +0200
commitce12749a8a64a880ff415941d7efc9e45d87aa94 (patch)
treea4fa2cdb55705222fab55dfbdb6e9ff65e23240c /app/views/sent_notifications
parentc61a54f7fe932b9b76ce930aaccb04f897c4093b (diff)
downloadgitlab-ce-ce12749a8a64a880ff415941d7efc9e45d87aa94.tar.gz
Improve the Unsubscribe confirmation page
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'app/views/sent_notifications')
-rw-r--r--app/views/sent_notifications/unsubscribe.html.haml14
1 files changed, 9 insertions, 5 deletions
diff --git a/app/views/sent_notifications/unsubscribe.html.haml b/app/views/sent_notifications/unsubscribe.html.haml
index 9baadf8a0c5..9ce6a1aeef5 100644
--- a/app/views/sent_notifications/unsubscribe.html.haml
+++ b/app/views/sent_notifications/unsubscribe.html.haml
@@ -1,13 +1,17 @@
- noteable = @sent_notification.noteable
- noteable_type = @sent_notification.noteable_type.humanize(capitalize: false)
-- noteable_text = %(#{noteable_type} "#{noteable.title}" (#{noteable.to_reference}))
-- title = "Unsubscribe from #{noteable_text}"
+- noteable_text = %(#{noteable.title} (#{noteable.to_reference}))
-- page_title title
+- page_title "Unsubscribe", noteable_text, @sent_notification.noteable_type.humanize.pluralize, @sent_notification.project.name_with_namespace
-%h3.page-title= title
-%p= "Are you sure you want to unsubscribe from #{noteable_text}?"
+%h3.page-title
+ Unsubscribe from #{noteable_type} #{noteable_text}
+
+%p
+ = succeed '?' do
+ Are you sure you want to unsubscribe from #{noteable_type}
+ = link_to noteable_text, url_for([@sent_notification.project.namespace.becomes(Namespace), @sent_notification.project, noteable])
%p
= link_to 'Unsubscribe', unsubscribe_sent_notification_path(@sent_notification, force: true),