= render "repositories/head"

%p.slead
  Deploy keys allow read-only access to repository. It matches perfectly for CI, staging or production servers.

  - if can? current_user, :admin_project, @project
    = link_to new_project_deploy_key_path(@project), class: "btn small", title: "New Deploy Key" do
      Add Deploy Key
- if @keys.any?
  %table
    %thead
      %tr
        %th Keys
        %th
        %th
    - @keys.each do |key|
      = render(partial: 'show', locals: {key: key})