summaryrefslogtreecommitdiff
path: root/app/views/call_routes/_index_core.html.haml
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-22 00:04:03 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-22 00:04:03 +0100
commitab63774d954fe1f967a97ffe5a0a66016eca2257 (patch)
treeb3974a58deabe6a989ad7352f10e75d7495cb0c5 /app/views/call_routes/_index_core.html.haml
parent495bbfdf78206c8adaec057e83900dda6754092c (diff)
parentf8bc860750f06ab95f9ced8e919e846d3e589819 (diff)
Merge branch 'tb-css' into develop
Diffstat (limited to 'app/views/call_routes/_index_core.html.haml')
-rw-r--r--app/views/call_routes/_index_core.html.haml20
1 files changed, 13 insertions, 7 deletions
diff --git a/app/views/call_routes/_index_core.html.haml b/app/views/call_routes/_index_core.html.haml
index 12e89ee..5dc7c21 100644
--- a/app/views/call_routes/_index_core.html.haml
+++ b/app/views/call_routes/_index_core.html.haml
@@ -1,15 +1,21 @@
- cache(['call_routes_table', call_routes.count, call_routes.reorder(:updated_at).last]) do
- %table
+ %table{:class => 'table table-striped'}
%tr
%th= t('call_routes.index.name')
+ %th= t('route_elements.index.pattern')
%th= t('call_routes.index.endpoint_type')
- %th= t('call_routes.index.endpoint_id')
-
- - reset_cycle
+ %th{:colspan => '3'}
+
- for call_route in call_routes
- %tr{:class => cycle('odd', 'even')}
- - cache(['call_route_single_table_row_within_tr', call_route, call_routes.count]) do
+ - cache(['call_route_single_table_row', call_route, call_routes.count]) do
+ %tr
%td= call_route.name
+ %td
+ - if call_route.route_elements.any?
+ = call_route.route_elements.first.pattern
+ - if call_route.route_elements.count > 1
+ = ', ...'
+ - else
+ = '-'
%td= call_route.endpoint_type
- %td= call_route.endpoint_id
=render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => call_route} \ No newline at end of file