summaryrefslogtreecommitdiff
path: root/app/views/call_routes/index.html.haml
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-01-17 21:51:58 +0100
committerspag <spag@golwen.net>2013-01-17 21:51:58 +0100
commit17206a20e5bcb44fa4d90f0e176f7aa0fe43bca3 (patch)
treeb16465034b16d2b1e00dc6ecf899f9fa063f0549 /app/views/call_routes/index.html.haml
parentb800f7c7ec5aa65f773d1c91c1418ca5edac0f2c (diff)
rename_column table to routing_table
Diffstat (limited to 'app/views/call_routes/index.html.haml')
-rw-r--r--app/views/call_routes/index.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/call_routes/index.html.haml b/app/views/call_routes/index.html.haml
index c83606b..151fc0e 100644
--- a/app/views/call_routes/index.html.haml
+++ b/app/views/call_routes/index.html.haml
@@ -2,10 +2,10 @@
- if @call_routes && @call_routes.count > 0
%table
- - @tables.each do |table|
+ - @routing_tables.each do |routing_table|
%tr
%td{:colspan => 3}
- %h3= table
- = render "index_core", :call_routes => @call_routes.where(:table => table)
+ %h3= routing_table
+ = render "index_core", :call_routes => @call_routes.where(:routing_table => routing_table)
= render :partial => 'shared/create_link', :locals => {:child_class => CallRoute}