be9aa7f194
This MR adds a string (thus max 255 chars) field to the enviroments table to expose it later in other features.
22 lines
889 B
Text
22 lines
889 B
Text
.row.prepend-top-default.append-bottom-default
|
|
.col-lg-3
|
|
%h4.prepend-top-0
|
|
Environments
|
|
%p
|
|
Environments allow you to track deployments of your application
|
|
= succeed "." do
|
|
= link_to "Read more about environments", help_page_path("ci/environments")
|
|
|
|
= form_for [@project.namespace.becomes(Namespace), @project, @environment], html: { class: 'col-lg-9' } do |f|
|
|
= form_errors(@environment)
|
|
|
|
.form-group
|
|
= f.label :name, 'Name', class: 'label-light'
|
|
= f.text_field :name, required: true, class: 'form-control'
|
|
.form-group
|
|
= f.label :external_url, 'External URL', class: 'label-light'
|
|
= f.url_field :external_url, class: 'form-control'
|
|
|
|
.form-actions
|
|
= f.submit 'Save', class: 'btn btn-save'
|
|
= link_to 'Cancel', namespace_project_environments_path(@project.namespace, @project), class: 'btn btn-cancel'
|