summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-05 15:12:20 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-05 15:12:20 +0100
commit3005e0ecb346db7b3d85d610691dea14be21f5f6 (patch)
tree2f19b96e4d70cfa1b3be703b6dd9025ffd991c2c /app/views
parent75b36967fed9db8268391ac10b02f5c0870c32ca (diff)
parente22d3f5cb2791b70a9fcfe6befdeca233772688d (diff)
Merge branch 'develop' of github.com:amooma/GS5 into develop
Diffstat (limited to 'app/views')
-rw-r--r--app/views/call_routes/show_variables.html.haml13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/views/call_routes/show_variables.html.haml b/app/views/call_routes/show_variables.html.haml
new file mode 100644
index 0000000..4bec39d
--- /dev/null
+++ b/app/views/call_routes/show_variables.html.haml
@@ -0,0 +1,13 @@
+%h3= 'Channel Variables'
+
+%table.table.table-striped
+ %thead
+ %tr
+ %th= 'Variable'
+ %th= 'Value'
+
+ %tbody{ :id => "show_variables" }
+ - @channel_variables.each do |key, value|
+ %tr
+ %td= key
+ %td= value.gsub(/\n/, '<br/>').html_safe