Repository URL to install this package:
|
Version:
3.0.4 ▾
|
% if renderings:
% for rendering in renderings:
<table class="table table-striped">
<thead>
<tr>
<th colspan="2">Renderer Name</th>
</tr>
</thead>
<tbody>
<tr class="pDebugOdd">
<td colspan="2">${rendering['name']|h}</td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="2">Rendering Value</th>
</tr>
</thead>
<tbody>
<tr class="pDebugOdd">
<td colspan="2">${rendering['val']|h}</td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="2">System Values</th>
</tr>
</thead>
<tbody>
% for i, (key, value) in enumerate(rendering['system']):
<tr>
<td>${key|h}</td>
<td>${value|h}</td>
</tr>
% endfor
</tbody>
</table>
% endfor
% else:
<p>No renderings performed.</p>
% endif