Commit 0530e5ba authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Add description to project features on edit project page

parent e117414e
...@@ -679,3 +679,16 @@ h1.http_status_code { ...@@ -679,3 +679,16 @@ h1.http_status_code {
font-weight: normal; font-weight: normal;
color: #456; color: #456;
} }
.control-group {
.controls {
span {
&.descr {
position: relative;
top: 2px;
left: 5px;
color: #666;
}
}
}
}
...@@ -74,6 +74,12 @@ ...@@ -74,6 +74,12 @@
.adv_settings { .adv_settings {
h6 { margin-left: 40px; } h6 { margin-left: 40px; }
} }
fieldset.features {
.control-label {
font-weight: bold;
}
}
} }
.project_clone_panel { .project_clone_panel {
......
...@@ -30,24 +30,32 @@ ...@@ -30,24 +30,32 @@
= f.label :default_branch, "Default Branch" = f.label :default_branch, "Default Branch"
.input= f.select(:default_branch, @project.heads.map(&:name), {}, style: "width:210px;") .input= f.select(:default_branch, @project.heads.map(&:name), {}, style: "width:210px;")
%fieldset %fieldset.features
%legend Features: %legend Features:
.clearfix .control-group
= f.label :issues_enabled, "Issues" = f.label :issues_enabled, "Issues", class: 'control-label'
.input= f.check_box :issues_enabled .controls
= f.check_box :issues_enabled
%span.descr Lightweight issue tracking system for this project
.clearfix .control-group
= f.label :merge_requests_enabled, "Merge Requests" = f.label :merge_requests_enabled, "Merge Requests", class: 'control-label'
.input= f.check_box :merge_requests_enabled .controls
= f.check_box :merge_requests_enabled
%span.descr Submit changes to be merged upstream.
.clearfix .control-group
= f.label :wall_enabled, "Wall" = f.label :wall_enabled, "Wall", class: 'control-label'
.input= f.check_box :wall_enabled .controls
= f.check_box :wall_enabled
%span.descr Simple chat system for broadcasting inside project
.clearfix .control-group
= f.label :wiki_enabled, "Wiki" = f.label :wiki_enabled, "Wiki", class: 'control-label'
.input= f.check_box :wiki_enabled .controls
= f.check_box :wiki_enabled
%span.descr Pages for project documentation
%br %br
......
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