debian-mirror-gitlab/app/views/sent_notifications/unsubscribe.html.haml

17 lines
926 B
Text
Raw Normal View History

2016-09-29 09:46:39 +05:30
- noteable = @sent_notification.noteable
2017-09-10 17:25:29 +05:30
- noteable_type = @sent_notification.noteable_type.titleize.downcase
2016-09-29 09:46:39 +05:30
- noteable_text = %(#{noteable.title} (#{noteable.to_reference}))
2019-03-02 22:35:43 +05:30
- page_title _("Unsubscribe"), noteable_text, noteable_type.pluralize, @sent_notification.project.full_name
2016-09-29 09:46:39 +05:30
%h3.page-title
2019-03-02 22:35:43 +05:30
= _("Unsubscribe from %{type}") % { type: noteable_type }
2016-09-29 09:46:39 +05:30
%p
2019-03-02 22:35:43 +05:30
- link_to_noteable_text = link_to(noteable_text, url_for([@sent_notification.project.namespace.becomes(Namespace), @sent_notification.project, noteable]))
= _("Are you sure you want to unsubscribe from the %{type}: %{link_to_noteable_text}?").html_safe % { type: noteable_type, link_to_noteable_text: link_to_noteable_text }
2016-09-29 09:46:39 +05:30
%p
2019-03-02 22:35:43 +05:30
= link_to _('Unsubscribe'), unsubscribe_sent_notification_path(@sent_notification, force: true),
2016-09-29 09:46:39 +05:30
class: 'btn btn-primary append-right-10'
2019-03-02 22:35:43 +05:30
= link_to _('Cancel'), new_user_session_path, class: 'btn append-right-10'