2018-11-08 19:23:39 +05:30
|
|
|
- message = local_assigns.fetch(:message, nil)
|
2017-08-17 22:00:37 +05:30
|
|
|
- content_for(:title, 'Access Denied')
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
= image_tag('illustrations/error-403.svg', alt: '403', lazy: false)
|
2017-08-17 22:00:37 +05:30
|
|
|
.container
|
2018-11-08 19:23:39 +05:30
|
|
|
%h3
|
|
|
|
= s_("403|You don't have the permission to access this page.")
|
2018-03-27 19:54:05 +05:30
|
|
|
- if message
|
|
|
|
%p
|
|
|
|
= message
|
2018-11-08 19:23:39 +05:30
|
|
|
%p
|
2019-02-15 15:39:39 +05:30
|
|
|
= s_('403|Please contact your GitLab administrator to get permission.')
|
2019-12-04 20:38:33 +05:30
|
|
|
.action-container.js-go-back{ hidden: true }
|
|
|
|
%button{ type: 'button', class: 'btn btn-success' }
|
2018-11-08 19:23:39 +05:30
|
|
|
= s_('Go Back')
|
|
|
|
= render "errors/footer"
|