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.')
|
2018-05-31 17:28:19 -04:00
|
|
|
.action-container.js-go-back{ style: 'display: none' }
|
|
|
|
%a{ href: 'javascript:history.back()', class: 'btn btn-success' }
|
|
|
|
= s_('Go Back')
|
|
|
|
= render "errors/footer"
|