##// END OF EJS Templates
auth: disable password change form for accounts that are not managed by RhodeCode....
auth: disable password change form for accounts that are not managed by RhodeCode. - in case of external accounts such as LDAP/oAuth, password reset doesn't make sense. - make it consisten with other disable forms for external account - fixes #5150

File last commit:

r1:854a839a default
r1275:b650c2de 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