summaryrefslogtreecommitdiff
path: root/app/views/acd_agents/_listing.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/acd_agents/_listing.html.haml')
-rw-r--r--app/views/acd_agents/_listing.html.haml8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/acd_agents/_listing.html.haml b/app/views/acd_agents/_listing.html.haml
new file mode 100644
index 0000000..0495ec2
--- /dev/null
+++ b/app/views/acd_agents/_listing.html.haml
@@ -0,0 +1,8 @@
+- amount_of_acd_agents = acd_agents.count
+- if amount_of_acd_agents > 0
+ - if amount_of_acd_agents < 30
+ = acd_agents.map{|acd_agent| acd_agent}.join(', ')
+ - else
+ = acd_agents.limit(15).map{|acd_agent| acd_agent}.join(', ') + ', '
+ = '[...]'
+ = acd_agents.offset(amount_of_acd_agents - 15).map{|acd_agent| acd_agent}.join(', ') \ No newline at end of file