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

_destroy.haml « pages « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff30c9ce1ea4b27b2749194f8990904c0c226058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- if @project.pages_deployed?
  - if can?(current_user, :remove_pages, @project)
    = render Pajamas::CardComponent.new(card_options: { class: 'border-danger' }, header_options: {class: 'bg-danger text-white'}) do |c|
      - c.with_header do
        = s_('GitLabPages|Remove pages')
      - c.with_body do
        = s_('GitLabPages|Removing pages will prevent them from being exposed to the outside world.')
      - c.with_footer do
        = 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
          = s_('GitLabPages|Remove pages')
  - else
    .nothing-here-block
      = s_('GitLabPages|Only project maintainers can remove pages')