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

access_denied.html.haml « errors « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf540439c79e806c4233ec412ed305272412e7be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- message = local_assigns.fetch(:message)

- content_for(:title, 'Access Denied')
%img{ :alt => "GitLab Logo", :src => image_path('logo.svg') }
  %h1
    403
.container
  %h3 Access Denied
  %hr
  - if message
    %p
      = message
  - else
    %p You are not allowed to access this page.
    %p Read more about project permissions #{link_to "here", help_page_path("user/permissions"), class: "vlink"}