Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Botelho <tiagonbotelho@hotmail.com>2017-07-18 18:09:14 +0300
committerTiago Botelho <tiagonbotelho@hotmail.com>2017-07-26 14:47:50 +0300
commitb5bdc55d239f3e19f8fe1e59b118da05ac81a0dd (patch)
tree507f7b46386d518cdb7b77fa4048d7f4d77eec37 /app/views/projects/_deletion_failed.html.haml
parent0aa8249e484ca97cfc28c7301d69077919032c08 (diff)
Move exception handling to execute
Diffstat (limited to 'app/views/projects/_deletion_failed.html.haml')
-rw-r--r--app/views/projects/_deletion_failed.html.haml13
1 files changed, 5 insertions, 8 deletions
diff --git a/app/views/projects/_deletion_failed.html.haml b/app/views/projects/_deletion_failed.html.haml
index 028510b5671..4f3698f91e6 100644
--- a/app/views/projects/_deletion_failed.html.haml
+++ b/app/views/projects/_deletion_failed.html.haml
@@ -1,9 +1,6 @@
-- if @project.delete_error.present?
- .project-deletion-failed-message.alert.alert-warning
- This project was scheduled for deletion, but failed with the following message:
- = @project.delete_error
+- project = local_assigns.fetch(:project)
+- return unless project.delete_error.present?
- .alert-link-group
- = link_to "Don't show again", profile_path(user: { hide_no_ssh_key: true }), method: :put, class: 'alert-link'
- |
- = link_to 'Remind later', '#', class: 'hide-no-ssh-message alert-link'
+.project-deletion-failed-message.alert.alert-warning
+ This project was scheduled for deletion, but failed with the following message:
+ = project.delete_error