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

edit.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: 805d4983002165af6e2fa0c4c7d7fd6e60c95ea5 (plain)
1
2
3
4
5
6
7
8
9
10
- page_title _('Edit Deploy Key')
%h3.page-title= _('Edit Deploy Key')
%hr

%div
  = form_for [@project, @deploy_key], include_id: false, html: { class: 'js-requires-input' } do |f|
    = render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
    .form-actions
      = f.submit 'Save changes', class: 'btn-success btn'
      = link_to 'Cancel', project_settings_repository_path(@project), class: 'btn btn-cancel'