summaryrefslogtreecommitdiff
path: root/app/views/user_groups/_index_core.html.haml
blob: c481a185c397c6a6ca972bc7c29830326ff6cff9 (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
27
28
29
30
31
32
33
34
35
36
37
- cache(['user_groups_table', I18n.locale, current_user, @user, user_groups, User.order(:updated_at).last, User.count, UserGroupMembership.count, GsParameter.get('NUMBER_OF_SHOWN_ITEMS')]) do
  %table{:class => 'table table-striped'}
    %thead
      %tr
        %th= t('user_groups.index.name')
        - if user_groups.pluck(:description).uniq != [nil]
          %th
            %span.hidden-phone
              = t('user_groups.index.description')
        - if @user
          %th
            %span.hidden-phone
              = t('user_groups.index.tenant_id')
        - else
          %th= t('user_groups.index.members')

    %tbody
      - for user_group in user_groups
        %tr
          %td= user_group.name
          - if user_groups.pluck(:description).uniq != [nil]
            %td
              %span.hidden-phone
                = user_group.description
          - if @user
            %td
              %span.hidden-phone
                = user_group.tenant
          - else
            %td
              =render 'users/listing', :users => user_group.users
              - if user_group.users.any?
                %br
              - if (user_group.tenant.user_ids - user_group.user_ids).any?
                = render :partial => 'shared/create_link', :locals => {:parent => user_group, :child_class => UserGroupMembership}

          =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => user_group.tenant, :child => user_group}