Commit 7a666d2589b672b2774f96ba3ca3c0135b776bed

Authored by Keith Harris
1 parent d3c429ed

display permissions as a table

Showing 1 changed file with 157 additions and 62 deletions   Show diff stats
app/views/help/permissions.html.haml
... ... @@ -2,65 +2,160 @@
2 2 %h3.page-title Permissions
3 3 %br
4 4  
5   - %fieldset
6   - %legend Guest
7   - %ul
8   - %li Create new issue
9   - %li Leave comments
10   - %li Write on project wall
11   -
12   - %fieldset
13   - %legend Reporter
14   - %ul
15   - %li Create new issue
16   - %li Leave comments
17   - %li Write on project wall
18   - %li Pull project code
19   - %li Download project
20   - %li Create a code snippets
21   -
22   -
23   - %fieldset
24   - %legend Developer
25   - %ul
26   - %li Create new issue
27   - %li Leave comments
28   - %li Write on project wall
29   - %li Pull project code
30   - %li Download project
31   - %li Create new merge request
32   - %li Create a code snippets
33   - %li Create new branches
34   - %li Push to non-protected branches
35   - %li Remove non-protected branches
36   - %li Add tags
37   - %li Write a wiki
38   -
39   - %fieldset
40   - %legend Master
41   - %ul
42   - %li Create new issue
43   - %li Leave comments
44   - %li Write on project wall
45   - %li Pull project code
46   - %li Download project
47   - %li Create new merge request
48   - %li Create a code snippets
49   - %li Create new branches
50   - %li Push to non-protected branches
51   - %li Remove non-protected branches
52   - %li Add tags
53   - %li Write a wiki
54   - %li Add new team members
55   - %li Push to protected branches
56   - %li Remove protected branches
57   - %li Edit project
58   - %li Add Deploy Keys to project
59   - %li Configure Project Hooks
60   -
61   - %fieldset
62   - %legend Owner
63   - %ul
64   - %li Switch public mode
65   - %li Transfer project to another namespace
66   - %li Remove project
  5 + %table
  6 + %thead
  7 + %tr
  8 + %td
  9 + %td Guest
  10 + %td Reporter
  11 + %td Developer
  12 + %td Master
  13 + %td Owner
  14 + %tbody
  15 + %tr
  16 + %td Create new issue
  17 + %td X
  18 + %td X
  19 + %td X
  20 + %td X
  21 + %td
  22 + %tr
  23 + %td Leave comments
  24 + %td X
  25 + %td X
  26 + %td X
  27 + %td X
  28 + %td
  29 + %tr
  30 + %td Write on project wall
  31 + %td X
  32 + %td X
  33 + %td X
  34 + %td X
  35 + %td
  36 + %tr
  37 + %td Pull project code
  38 + %td
  39 + %td X
  40 + %td X
  41 + %td X
  42 + %td
  43 + %tr
  44 + %td Download project
  45 + %td
  46 + %td X
  47 + %td X
  48 + %td X
  49 + %td
  50 + %tr
  51 + %td Create code snippets
  52 + %td
  53 + %td X
  54 + %td X
  55 + %td X
  56 + %td
  57 + %tr
  58 + %td Create new merge request
  59 + %td
  60 + %td
  61 + %td X
  62 + %td X
  63 + %td
  64 + %tr
  65 + %td Create new branches
  66 + %td
  67 + %td
  68 + %td X
  69 + %td X
  70 + %td
  71 + %tr
  72 + %td Push to non-protected branches
  73 + %td
  74 + %td
  75 + %td X
  76 + %td X
  77 + %td
  78 + %tr
  79 + %td Remove non-protected branches
  80 + %td
  81 + %td
  82 + %td X
  83 + %td X
  84 + %td
  85 + %tr
  86 + %td Add tags
  87 + %td
  88 + %td
  89 + %td X
  90 + %td X
  91 + %td
  92 + %tr
  93 + %td Write a wiki
  94 + %td
  95 + %td
  96 + %td X
  97 + %td X
  98 + %td
  99 + %tr
  100 + %td Add new team members
  101 + %td
  102 + %td
  103 + %td
  104 + %td X
  105 + %td
  106 + %tr
  107 + %td Push to protected branches
  108 + %td
  109 + %td
  110 + %td
  111 + %td X
  112 + %td
  113 + %tr
  114 + %td Remove protected branches
  115 + %td
  116 + %td
  117 + %td
  118 + %td X
  119 + %td
  120 + %tr
  121 + %td Edit project
  122 + %td
  123 + %td
  124 + %td
  125 + %td X
  126 + %td
  127 + %tr
  128 + %td Add Deploy Keys to project
  129 + %td
  130 + %td
  131 + %td
  132 + %td X
  133 + %td
  134 + %tr
  135 + %td Configure Project Hooks
  136 + %td
  137 + %td
  138 + %td
  139 + %td X
  140 + %td
  141 + %tr
  142 + %td Switch public mode
  143 + %td
  144 + %td
  145 + %td
  146 + %td
  147 + %td X
  148 + %tr
  149 + %td Transfer project to another namespace
  150 + %td
  151 + %td
  152 + %td
  153 + %td
  154 + %td X
  155 + %tr
  156 + %td Remove project
  157 + %td
  158 + %td
  159 + %td
  160 + %td
  161 + %td X
... ...