Better remove project message
This commit is contained in:
parent
edc2e0a64b
commit
e96374b74b
5 changed files with 7 additions and 4 deletions
|
@ -44,4 +44,8 @@ module ProjectsHelper
|
|||
project.name
|
||||
end
|
||||
end
|
||||
|
||||
def remove_project_message(project)
|
||||
"You are going to remove #{project.name_with_namespace}.\n Removed project CANNOT be restored!\n Are you ABSOLUTELY sure?"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -22,5 +22,4 @@ module UserTeamsHelper
|
|||
def remove_from_user_team_message(team, member)
|
||||
"You are going to remove #{member.name} from #{team.name}. Are you sure?"
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
= link_to project.name_with_namespace, [:admin, project]
|
||||
.pull-right
|
||||
= link_to 'Edit', edit_project_path(project), id: "edit_#{dom_id(project)}", class: "btn btn-small"
|
||||
= link_to 'Destroy', [project], confirm: "REMOVE #{project.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove"
|
||||
= link_to 'Destroy', [project], confirm: remove_project_message(project), method: :delete, class: "btn btn-small btn-remove"
|
||||
- if @projects.blank?
|
||||
%p.nothing_here_message 0 projects matches
|
||||
= paginate @projects, theme: "gitlab"
|
||||
|
|
|
@ -147,7 +147,7 @@
|
|||
%p
|
||||
%strong Removed project can not be restored!
|
||||
|
||||
= link_to 'Remove project', @project, confirm: 'Removed project can not be restored! Are you sure?', method: :delete, class: "btn btn-remove btn-small"
|
||||
= link_to 'Remove project', @project, confirm: remove_project_message(@project), method: :delete, class: "btn btn-remove btn-small"
|
||||
- else
|
||||
%p.nothing_here_message Only project owner can remove a project
|
||||
|
||||
|
|
|
@ -31,4 +31,4 @@
|
|||
|
||||
- if can? current_user, :remove_project, @project
|
||||
.prepend-top-20
|
||||
= link_to 'Remove project', @project, confirm: 'Are you sure?', method: :delete, class: "btn btn-remove pull-right"
|
||||
= link_to 'Remove project', @project, confirm: remove_project_message(@project), method: :delete, class: "btn btn-remove pull-right"
|
||||
|
|
Loading…
Reference in a new issue