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

request_conflict.html.haml « errors « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 040aa880e1c94c90e237b3ce4b8fcaaf8bfbbd81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- message = local_assigns.fetch(:message, nil)
- content_for(:title, 'Request Conflict')

%img{ :alt => "", :src => image_path('logo.svg') }
%h1
  409
.container
  %h2
    = s_("409|There was a conflict with your request.")
  - if message
    %p
      = message
  %p
    = s_('409|Please contact your GitLab administrator if you think this is a mistake.')
  .action-container.js-go-back{ hidden: true }
    = render Pajamas::ButtonComponent.new(variant: :confirm) do
      = _('Go Back')
= render "errors/footer"