##// END OF EJS Templates
meta-tags: cleanup support for metatags....
meta-tags: cleanup support for metatags. - fixes problem of html-escape + supported link - no longer extract url from description, you have to use new url => tag - tags are extracted to the beginning of the description during rendering - show helpers in proper places in groups/repos/forks

File last commit:

r1:854a839a default
r2091:90bf6103 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