diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-03-08 00:15:31 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-03-08 00:15:31 +0200 |
commit | d4ebde937804727040faaabb69422b3763d247a8 (patch) | |
tree | dee8b19de481ef15131e2be77c3f2498731adaa3 | |
parent | a9ef0bc343e496b14a44be112cfe9fc81af914f0 (diff) | |
download | gitlab-ce-d4ebde937804727040faaabb69422b3763d247a8.tar.gz |
help updated
-rw-r--r-- | app/views/help/index.html.haml | 6 | ||||
-rw-r--r-- | app/views/help/permissions.html.haml | 63 |
2 files changed, 37 insertions, 32 deletions
diff --git a/app/views/help/index.html.haml b/app/views/help/index.html.haml index 2b0b5a191ff..d246addb317 100644 --- a/app/views/help/index.html.haml +++ b/app/views/help/index.html.haml @@ -1,6 +1,6 @@ %h3 Gitlabhq - %span.right v2.2 + %span.right v2.3 %hr %h4 Self Hosted Git Management %h4 Fast, secure and stable solution based on Ruby on Rails & Gitolite. @@ -11,7 +11,7 @@ %ol %li - = link_to "Workflow", help_workflow_path + %h5= link_to "Workflow", help_workflow_path %li - = link_to "Permissions", help_permissions_path + %h5= link_to "Permissions", help_permissions_path diff --git a/app/views/help/permissions.html.haml b/app/views/help/permissions.html.haml index 0e6e351b43e..7b911f3fb6b 100644 --- a/app/views/help/permissions.html.haml +++ b/app/views/help/permissions.html.haml @@ -1,36 +1,41 @@ %h3 Permissions %hr -%h4 Guest -%ul - %li Create new issue - %li Leave comments - %li Write on project wall +.row + .ui-box.span3 + %h5 Guest + %ul.unstyled + %li Create new issue + %li Leave comments + %li Write on project wall -%h4 Reporter -%ul - %li Pull project code - %li Download project - %li Create new issue - %li Create new merge request - %li Write on project wall - %li Create a code snippets + .ui-box.span4 + %h5 Reporter + %ul.unstyled + %li Pull project code + %li Download project + %li Create new issue + %li Create new merge request + %li Write on project wall + %li Create a code snippets -%h4 Developer -%ul - %li Pull project code - %li Create new branches - %li Push to non-protected branches - %li Remove non-protected branches - %li Add tags - %li Create new issue - %li Create new merge request - %li Write on project wall - %li Write a wiki + .ui-box.span4 + %h5 Developer + %ul.unstyled + %li Pull project code + %li Create new branches + %li Push to non-protected branches + %li Remove non-protected branches + %li Add tags + %li Create new issue + %li Create new merge request + %li Write on project wall + %li Write a wiki -%h4 Master -%ul - %li Full repository access - %li Full project access - %li Add new team members + .ui-box.span4 + %h5 Master + %ul.unstyled + %li Full repository access + %li Full project access + %li Add new team members |