new.html.haml 661 字节
Newer Older
K
Kamil Trzcinski 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
- page_title "New Environment"

%h3.page-title
  New Environment
%hr

= form_for @environment, url: namespace_project_environments_path(@project.namespace, @project), html: { id: "new-environment-form", class: "form-horizontal js-new-environment-form js-requires-input" } do |f|
  = form_errors(@environment)
  .form-group
    = f.label :ref, 'Name', class: 'control-label'
    .col-sm-10
      = f.text_field :name, required: true, tabindex: 2, class: 'form-control'
  .form-actions
    = f.submit 'Create', class: 'btn btn-create', tabindex: 3
    = link_to 'Cancel', namespace_project_environments_path(@project.namespace, @project), class: 'btn btn-cancel'