summaryrefslogtreecommitdiff
path: root/app/views/gui_functions/_index_core.html.haml
blob: 093a0d7a2045e18f8ac03f7e99c63a8daecb8407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
%table
  %tr
    %th= t('gui_functions.index.category')
    %th= t('gui_functions.index.name')
    - @user_groups.each do |user_group|
      %th= user_group

  - reset_cycle
  - for gui_function in gui_functions
    %tr{:class => cycle('odd', 'even')}
      %td= gui_function.category
      %td
        = gui_function.name
        - if !gui_function.description.blank?
          %br
          %i= gui_function.description
      - @user_groups.each do |user_group|
        - if gui_function.gui_function_memberships.find_by_user_group_id(user_group.id)
          - if gui_function.gui_function_memberships.find_by_user_group_id(user_group.id).activated == true
            %td= 'x'
          - else
            %td= ''
        - else
          %td= 'x'

      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => gui_function}