Commit 36208490 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Improve project edit form

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent e407a481
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
Project settings Project settings
%hr %hr
.panel-body .panel-body
= form_for [@project.namespace.becomes(Namespace), @project], remote: true, html: { multipart: true, class: "edit_project form-horizontal" }, authenticity_token: true do |f| = form_for [@project.namespace.becomes(Namespace), @project], remote: true, html: { multipart: true, class: "edit_project form-horizontal fieldset-form" }, authenticity_token: true do |f|
%fieldset %fieldset
.form-group.project_name_holder .form-group.project_name_holder
...@@ -41,32 +41,40 @@ ...@@ -41,32 +41,40 @@
%legend %legend
Features: Features:
.form-group .form-group
= f.label :issues_enabled, "Issues", class: 'control-label' .col-sm-offset-2.col-sm-10
.col-sm-10
.checkbox .checkbox
= f.check_box :issues_enabled = f.label :issues_enabled do
%span.descr Lightweight issue tracking system for this project = f.check_box :issues_enabled
%strong Issues
%br
%span.descr Lightweight issue tracking system for this project
.form-group .form-group
= f.label :merge_requests_enabled, "Merge Requests", class: 'control-label' .col-sm-offset-2.col-sm-10
.col-sm-10
.checkbox .checkbox
= f.check_box :merge_requests_enabled = f.label :merge_requests_enabled do
%span.descr Submit changes to be merged upstream. = f.check_box :merge_requests_enabled
%strong Merge Requests
%br
%span.descr Submit changes to be merged upstream.
.form-group .form-group
= f.label :wiki_enabled, "Wiki", class: 'control-label' .col-sm-offset-2.col-sm-10
.col-sm-10
.checkbox .checkbox
= f.check_box :wiki_enabled = f.label :wiki_enabled do
%span.descr Pages for project documentation = f.check_box :wiki_enabled
%strong Wiki
%br
%span.descr Pages for project documentation
.form-group .form-group
= f.label :snippets_enabled, "Snippets", class: 'control-label' .col-sm-offset-2.col-sm-10
.col-sm-10
.checkbox .checkbox
= f.check_box :snippets_enabled = f.label :snippets_enabled do
%span.descr Share code pastes with others out of git repository = f.check_box :snippets_enabled
%strong Snippets
%br
%span.descr Share code pastes with others out of git repository
%fieldset.features %fieldset.features
%legend %legend
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment