Commit 747292e2d33ec77219be584fa55fc67c08f008b2

Authored by Dmitriy Zaporozhets
1 parent b765a795

reorder features list in project -> edit page

Showing 1 changed file with 6 additions and 5 deletions   Show diff stats
app/views/projects/_form.html.haml
... ... @@ -82,6 +82,12 @@
82 82 %span.descr Submit changes to be merged upstream.
83 83  
84 84 .control-group
  85 + = f.label :wiki_enabled, "Wiki", class: 'control-label'
  86 + .controls
  87 + = f.check_box :wiki_enabled
  88 + %span.descr Pages for project documentation
  89 +
  90 + .control-group
85 91 = f.label :wall_enabled, "Wall", class: 'control-label'
86 92 .controls
87 93 = f.check_box :wall_enabled
... ... @@ -93,11 +99,6 @@
93 99 = f.check_box :snippets_enabled
94 100 %span.descr Share code pastes with others out of git repository
95 101  
96   - .control-group
97   - = f.label :wiki_enabled, "Wiki", class: 'control-label'
98   - .controls
99   - = f.check_box :wiki_enabled
100   - %span.descr Pages for project documentation
101 102  
102 103 .form-actions
103 104 = f.submit 'Save', class: "btn btn-save"
... ...