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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/deploy_keys/index.html.haml')
-rw-r--r--app/views/projects/deploy_keys/index.html.haml30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/views/projects/deploy_keys/index.html.haml b/app/views/projects/deploy_keys/index.html.haml
new file mode 100644
index 00000000000..a1fa3475a84
--- /dev/null
+++ b/app/views/projects/deploy_keys/index.html.haml
@@ -0,0 +1,30 @@
+%p.slead
+ Deploy keys allow read-only access to repository. They can be used for CI, staging or production servers
+
+%p
+ You can create a deploy key or add existing one
+ = link_to new_project_deploy_key_path(@project), class: "btn btn-primary pull-right", title: "New Deploy Key" do
+ %i.icon-plus
+ New Deploy Key
+
+%hr.clearfix
+
+.row
+ .span5.enabled-keys
+ %h5.cgreen
+ Enabled deploy keys
+ %small for this project
+ %ul.bordered-list
+ = render @enabled_keys
+ - if @enabled_keys.blank?
+ .light-well
+ %p.nothing_here_message Create #{link_to 'new deploy key', new_project_deploy_key_path(@project)} or add existing one
+ .span5.available-keys
+ %h5
+ Available deploy keys
+ %small from projects you are able to manage
+ %ul.bordered-list
+ = render @available_keys
+ - if @available_keys.blank?
+ .light-well
+ %p.nothing_here_message All deploy keys created in projects you own will be displayed here