2012-01-14 20:26:35 +01:00
|
|
|
= render "repositories/head"
|
2012-01-28 11:40:17 +01:00
|
|
|
- if can? current_user, :admin_project, @project
|
2012-02-11 22:22:33 +01:00
|
|
|
.alert-message.block-message
|
2012-06-04 00:37:27 +02:00
|
|
|
Deploy keys allow read-only access to repository.
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to new_project_deploy_key_path(@project), class: "btn small", title: "New Deploy Key" do
|
2012-06-04 00:37:27 +02:00
|
|
|
Add Deploy Key
|
2012-01-28 11:40:17 +01:00
|
|
|
|
2012-03-05 23:29:40 +01:00
|
|
|
- if @keys.any?
|
2012-03-28 09:46:51 +02:00
|
|
|
%table
|
2012-03-05 23:29:40 +01:00
|
|
|
- @keys.each do |key|
|
2012-08-11 00:07:50 +02:00
|
|
|
= render(partial: 'show', locals: {key: key})
|