2018-06-13 10:05:55 -04:00
|
|
|
- message = local_assigns.fetch(:message, nil)
|
2016-11-29 13:44:07 -05:00
|
|
|
- content_for(:title, 'Access Denied')
|
2018-05-31 17:28:19 -04:00
|
|
|
|
|
|
|
= image_tag('illustrations/error-403.svg', alt: '403', lazy: false)
|
2016-11-29 13:44:07 -05:00
|
|
|
.container
|
2018-05-31 17:28:19 -04:00
|
|
|
%h3
|
|
|
|
= s_("403|You don't have the permission to access this page.")
|
2017-12-11 09:21:06 -05:00
|
|
|
- if message
|
|
|
|
%p
|
|
|
|
= message
|
2018-05-31 17:28:19 -04:00
|
|
|
%p
|
2018-11-19 10:03:58 -05:00
|
|
|
= s_('403|Please contact your GitLab administrator to get permission.')
|
2019-08-15 03:29:29 -04:00
|
|
|
.action-container.js-go-back{ hidden: true }
|
2022-06-16 05:09:15 -04:00
|
|
|
= render Pajamas::ButtonComponent.new(variant: :confirm) do
|
2021-08-30 08:09:48 -04:00
|
|
|
= _('Go Back')
|
2018-05-31 17:28:19 -04:00
|
|
|
= render "errors/footer"
|