summaryrefslogtreecommitdiff
path: root/app/views/call_routes/show_variables.html.haml
blob: 4bec39d1556ab9d35b72e7a8b93cf40fa5ef80d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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