summaryrefslogtreecommitdiff
path: root/app/views/automatic_call_distributors
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/automatic_call_distributors')
-rw-r--r--app/views/automatic_call_distributors/_index_core.html.haml68
-rw-r--r--app/views/automatic_call_distributors/show.html.haml97
2 files changed, 87 insertions, 78 deletions
diff --git a/app/views/automatic_call_distributors/_index_core.html.haml b/app/views/automatic_call_distributors/_index_core.html.haml
index 50908f4..e264c29 100644
--- a/app/views/automatic_call_distributors/_index_core.html.haml
+++ b/app/views/automatic_call_distributors/_index_core.html.haml
@@ -1,39 +1,35 @@
-%table{:class => 'table table-striped'}
- %tr
- %th= t('automatic_call_distributors.index.name')
- %th= t('automatic_call_distributors.index.strategy')
- %th= t('automatic_call_distributors.index.max_callers')
- %th= t('automatic_call_distributors.index.agent_timeout')
- %th= t('automatic_call_distributors.index.retry_timeout')
- %th= t('automatic_call_distributors.index.join')
- %th= t('automatic_call_distributors.index.leave')
- %th= t('automatic_call_distributors.index.phone_numbers')
- %th= t('automatic_call_distributors.index.acd_agents')
-
-
- - for automatic_call_distributor in automatic_call_distributors
+%table.table.table-striped
+ %thead
%tr
- %td= automatic_call_distributor.name
- %td= t("automatic_call_distributors.strategies.#{automatic_call_distributor.strategy}")
- %td= automatic_call_distributor.max_callers
- %td= automatic_call_distributor.agent_timeout
- %td= automatic_call_distributor.retry_timeout
- %td= t("automatic_call_distributors.join_on.#{automatic_call_distributor.join}")
- %td= t("automatic_call_distributors.leave_on.#{automatic_call_distributor.leave}")
-
- %td
- - if automatic_call_distributor.phone_numbers.count > 0
- = render 'phone_numbers/listing', :phone_numbers => automatic_call_distributor.phone_numbers
- %br
- = render :partial => 'shared/create_link', :locals => {:parent => automatic_call_distributor, :child_class => PhoneNumber, :short_link => true}
+ %th= t('automatic_call_distributors.index.name')
+ %th
+ %span.hidden-phone
+ = t('automatic_call_distributors.index.strategy')
+ %th= t('automatic_call_distributors.index.phone_numbers')
+ %th
+ %span.hidden-phone
+ = t('automatic_call_distributors.index.acd_agents')
- %td
- - if automatic_call_distributor.acd_agents.count > 3
- = link_to automatic_call_distributor.acd_agents.count, automatic_call_distributor_acd_agents_path(automatic_call_distributor)
- %br
- - elsif automatic_call_distributor.acd_agents.count > 0
- = render 'acd_agents/listing', :acd_agents => automatic_call_distributor.acd_agents
- %br
- = render :partial => 'shared/create_link', :locals => {:parent => automatic_call_distributor, :child_class => AcdAgent, :short_link => true}
+ %tbody
+ - for automatic_call_distributor in automatic_call_distributors
+ %tr
+ %td
+ %span.hidden-phone
+ = automatic_call_distributor.name
+ %span.visible-phone
+ = truncate(automatic_call_distributor.name, :length => 8)
+ %td
+ %span.hidden-phone
+ = t("automatic_call_distributors.strategies.#{automatic_call_distributor.strategy}")
+ %td
+ - if automatic_call_distributor.phone_numbers.any?
+ = render 'phone_numbers/listing', :phone_numbers => automatic_call_distributor.phone_numbers
+ %td
+ %span.hidden-phone
+ - if automatic_call_distributor.acd_agents.count > 3
+ = link_to automatic_call_distributor.acd_agents.count, automatic_call_distributor_acd_agents_path(automatic_call_distributor)
+ %br
+ - elsif automatic_call_distributor.acd_agents.any?
+ = render 'acd_agents/listing', :acd_agents => automatic_call_distributor.acd_agents
- =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => automatic_call_distributor.automatic_call_distributorable, :child => automatic_call_distributor} \ No newline at end of file
+ =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => automatic_call_distributor.automatic_call_distributorable, :child => automatic_call_distributor} \ No newline at end of file
diff --git a/app/views/automatic_call_distributors/show.html.haml b/app/views/automatic_call_distributors/show.html.haml
index c29f2df..a461652 100644
--- a/app/views/automatic_call_distributors/show.html.haml
+++ b/app/views/automatic_call_distributors/show.html.haml
@@ -1,47 +1,60 @@
- content_for :title, t("automatic_call_distributors.show.page_title")
-%table{:class => 'table table-striped'}
- %tr
- %th= t('automatic_call_distributors.show.name') + ":"
- %td= @automatic_call_distributor.name
- %tr
- %th= t('automatic_call_distributors.show.strategy') + ":"
- %td= t("automatic_call_distributors.strategies.#{@automatic_call_distributor.strategy}")
- %tr
- %th= t('automatic_call_distributors.show.max_callers') + ":"
- %td= @automatic_call_distributor.max_callers
- %tr
- %th= t('automatic_call_distributors.show.agent_timeout') + ":"
- %td= @automatic_call_distributor.agent_timeout
- %tr
- %th= t('automatic_call_distributors.show.retry_timeout') + ":"
- %td= @automatic_call_distributor.retry_timeout
- %tr
- %th= t('automatic_call_distributors.show.join') + ":"
- %td= t("automatic_call_distributors.join_on.#{@automatic_call_distributor.join}")
- %tr
- %th= t('automatic_call_distributors.show.leave') + ":"
- %td= t("automatic_call_distributors.leave_on.#{@automatic_call_distributor.leave}")
-
- %tr
- %th= t('automatic_call_distributors.show.announce_position') + ":"
- %td= @automatic_call_distributor.announce_position
-
- %tr
- %th= t('automatic_call_distributors.show.announce_call_agents') + ":"
- %td= @automatic_call_distributor.announce_call_agents
-
- %tr
- %th= t('automatic_call_distributors.show.greeting') + ":"
- %td= @automatic_call_distributor.greeting
-
- %tr
- %th= t('automatic_call_distributors.show.goodbye') + ":"
- %td= @automatic_call_distributor.goodbye
-
- %tr
- %th= t('automatic_call_distributors.show.music') + ":"
- %td= @automatic_call_distributor.music
+%table.table.table-striped
+ %tbody
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.name') + ":"
+ %td= @automatic_call_distributor.name
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.strategy') + ":"
+ %td= t("automatic_call_distributors.strategies.#{@automatic_call_distributor.strategy}")
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.max_callers') + ":"
+ %td= @automatic_call_distributor.max_callers
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.agent_timeout') + ":"
+ %td= @automatic_call_distributor.agent_timeout
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.retry_timeout') + ":"
+ %td= @automatic_call_distributor.retry_timeout
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.join') + ":"
+ %td= t("automatic_call_distributors.join_on.#{@automatic_call_distributor.join}")
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.leave') + ":"
+ %td= t("automatic_call_distributors.leave_on.#{@automatic_call_distributor.leave}")
+
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.announce_position') + ":"
+ %td= @automatic_call_distributor.announce_position
+
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.announce_call_agents') + ":"
+ %td= @automatic_call_distributor.announce_call_agents
+
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.greeting') + ":"
+ %td= @automatic_call_distributor.greeting
+
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.goodbye') + ":"
+ %td= @automatic_call_distributor.goodbye
+
+ %tr
+ %td
+ %strong= t('automatic_call_distributors.show.music') + ":"
+ %td= @automatic_call_distributor.music
= render :partial => 'shared/show_edit_destroy_part', :locals => { :parent => @automatic_call_distributor.automatic_call_distributorable, :child => @automatic_call_distributor }