summaryrefslogtreecommitdiff
path: root/app/views/tenants/_table_of_functions.html.haml
blob: ef2a2d01f64872c8c961f5384150f7be437265ee (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
- cache([I18n.locale, tenant, tenant.callthroughs.count, tenant.callthroughs.order(:updated_at).last, tenant.conferences.count, tenant.conferences.order(:updated_at).last, tenant.hunt_groups.count, tenant.hunt_groups.order(:updated_at).last, tenant.automatic_call_distributors.count, tenant.automatic_call_distributors.order(:updated_at).last]) do
  %table
    %tr{:class => 'even'}
      %th
        Funktion
      %th
        Anzahl
      %th
    - cache([I18n.locale, tenant, tenant.callthroughs.count, tenant.callthroughs.order(:updated_at).last]) do
      %tr{:class => 'odd'}
        %td
          = t("callthroughs.name")
        %td
          - if tenant.callthroughs.any?
            = link_to tenant.callthroughs.count.to_s, tenant_callthroughs_path(tenant)
          - else
            = '-'
        %td
          = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => Callthrough}
    - cache([I18n.locale, tenant, tenant.conferences.count, tenant.conferences.order(:updated_at).last]) do
      %tr{:class => 'even'}
        %td
          = t("conferences.name")
        %td
          - if tenant.conferences.any?
            = link_to tenant.conferences.count.to_s, tenant_conferences_path(tenant)
          - else
            = '-'
        %td
          = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => Conference}
    - cache([I18n.locale, tenant, tenant.hunt_groups.count, tenant.hunt_groups.order(:updated_at).last]) do
      %tr{:class => 'odd'}
        %td
          = t("hunt_groups.name")
        %td
          - if tenant.hunt_groups.any?
            = link_to tenant.hunt_groups.count.to_s, tenant_hunt_groups_path(tenant)
          - else
            = '-'
        %td
          = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => HuntGroup}
    - cache([I18n.locale, tenant, tenant.automatic_call_distributors.count, tenant.automatic_call_distributors.order(:updated_at).last]) do
      %tr{:class => 'even'}
        %td
          = t("automatic_call_distributors.name")
        %td
          - if tenant.automatic_call_distributors.any?
            = link_to tenant.automatic_call_distributors.count.to_s, tenant_automatic_call_distributors_path(tenant)
          - else
            = '-'
        %td
          = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => AutomaticCallDistributor}