debian-mirror-gitlab/app/views/projects/pages/_destroy.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
738 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- if @project.pages_deployed?
- if can?(current_user, :remove_pages, @project)
2023-07-09 08:55:56 +05:30
.gl-bg-red-50.gl-inset-border-l-3-red-600.gl-py-5.gl-px-6
%h4.gl-font-lg.gl-mt-0= s_('GitLabPages|Remove pages')
%p= s_('GitLabPages|Removing pages will prevent them from being exposed to the outside world.')
= render Pajamas::ButtonComponent.new(href: project_pages_path(@project),
variant: :danger,
method: :delete,
button_options: {data: { confirm: s_('GitLabPages|Are you sure?'), 'confirm-btn-variant': 'danger'}, "aria-label": s_('GitLabPages|Remove pages')}) do
2019-12-21 20:55:43 +05:30
= s_('GitLabPages|Remove pages')
2017-08-17 22:00:37 +05:30
- else
2019-12-21 20:55:43 +05:30
.nothing-here-block
= s_('GitLabPages|Only project maintainers can remove pages')