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

_form.html.haml « deploy_keys « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fb83021dc08a94e1d1e8856162bc10e159a7161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%div
  = form_for [@project, @key], url: project_deploy_keys_path do |f|
    -if @key.errors.any?
      .alert.alert-error
        %ul
          - @key.errors.full_messages.each do |msg|
            %li= msg

    .clearfix
      = f.label :title
      .input= f.text_field :title
    .clearfix
      = f.label :key
      .input
        = f.text_area :key, class: [:xxlarge, :thin_area]
        %p.hint
          Paste a machine public key here. Read more about how generate it
          = link_to "here", help_ssh_path

    .actions
      = f.submit 'Save', class: "btn-save btn"
      = link_to "Cancel", project_deploy_keys_path(@project), class: "btn btn-cancel"