Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/creactiweb/_templates/lib/werkzeug/debug/templates/dump_object.html
blob: 59d80bf9a9be83c571d043323513872cebeb46bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="box">
  <h3>$escape(title)</h3>
  <% if repr %>
    <div class="repr">$repr</div>
  <% endif %>
  <table>
  <% for key, value in items %>
    <tr>
      <th>$escape(key)</th>
      <td>$value</td>
    </tr>
  <% endfor %>
  </table>
</div>