Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/creactiweb/_templates/lib/werkzeug/debug/shared/vartable.tmpl
blob: e653a9915171c947ac37589fcf4084e76918ff4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<table class="vars">
<% if type == 'empty' %>
  <tr><th>no data given</th></tr>
<% elif type == 'simple' %>
  <tr><td class="value">$escape(value)</td></tr>
<% elif type == 'dict' %>
  <tr><th>Name</th><th>Value</th></tr>
  <% for key, item in value %>
  <tr><td class="name">$escape(key)</td><td class="value">$escape(item)</td></tr>
  <% endfor %>
<% elif type == 'list' %>
  <% for item in value %>
  <tr><td class="value">$escape(item)</td></tr>
  <% endfor %>
<% endif %>
</table>