blob: bd4468cabb608ff26de8e1d251c622c25ea242ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
- content_for :title, t("call_routes.index.page_title")
- if @call_routes && @call_routes.count > 0
%table{:class => 'table table-striped'}
- @routing_tables.each do |routing_table|
%tr
%td{:colspan => 3}
%h3= routing_table
= render "index_core", :call_routes => @call_routes.where(:routing_table => routing_table)
= render :partial => 'shared/create_link', :locals => {:child_class => CallRoute}
|