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

index.html.haml « deploy_keys « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c02a18146ebe2d3d32d5dea1826b38c95f501d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%h3.page-title
  Deploy keys allow read-only access to the repository

  = link_to new_namespace_project_deploy_key_path(@project.namespace, @project), class: "btn btn-new pull-right", title: "New Deploy Key" do
    %i.fa.fa-plus
    New Deploy Key

%p.light
  Deploy keys can be used for CI, staging or production servers.
  You can create a deploy key or add an existing one

%hr.clearfix

.row
  .col-md-6.enabled-keys
    %h5
      %strong.cgreen Enabled deploy keys
      for this project
    %ul.bordered-list
      = render @enabled_keys
      - if @enabled_keys.blank?
        .light-well
          .nothing-here-block Create a #{link_to 'new deploy key', new_namespace_project_deploy_key_path(@project.namespace, @project)} or add an existing one
  .col-md-6.available-keys
    %h5
      %strong Deploy keys
      from projects available to you
    %ul.bordered-list
      = render @available_keys
      - if @available_keys.blank?
        .light-well
          .nothing-here-block Deploy keys from projects you have access to will be displayed here