##// END OF EJS Templates
audit-logs: use stricter limit on how much data the commits key can hold....
audit-logs: use stricter limit on how much data the commits key can hold. - we're limited by a smaller column size - helps avoid mysql problems - found after sqlalchemy update

File last commit:

r1:854a839a default
r1964:70ea4c96 default
Show More
pylons_context.dbtmako
24 lines | 641 B | text/plain | TextLexer
% if pylons_context:
<table class="table table-striped table-condensed">
<thead>
<th>Key</th>
<th>Value</th>
</thead>
<tbody>
% for key in sorted(pylons_context.keys()):
<tr>
<td>${key}</td>
<td>${repr(pylons_context[key])}</td>
</tr>
% endfor
</tbody>
</table>
% else:
<p>No context information found.</p>
<p>The integrated Pylons application has to be abjusted to make the context object available.
It should check for <code>environ['debugtoolbar.wants_pylons_context'] == True</code> and set
<code>environ['debugtoolbar.pylons_context'] = tmpl_context._current_obj()</code>.</p>
% endif