Commit 304baaf8efcecf6b639ea1d925ee9973d5b14fd7

Authored by Dmitriy Zaporozhets
2 parents d0a95c30 7a666d25

Merge pull request #4601 from keith9820/master

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