##// END OF EJS Templates
user-group-admin: use a proper auth filter....
user-group-admin: use a proper auth filter. - we now use an full sql based perm check based on an earlier fetch of allowed IDS - fixes problem with sql limit/filter and later filterint that by auth. - can be optimized later

File last commit:

r1282:90601d74 default
r1986:64b52a82 default
Show More
my_account_password.mako
13 lines | 395 B | application/x-mako | MakoHtmlLexer
<%namespace name="widgets" file="/widgets.mako"/>
<%widgets:panel title="${_('Change Your Account Password')}">
% if c.extern_type != 'rhodecode':
<p>${_('Your user account details are managed by an external source. Details cannot be managed here.')}
<br/>${_('Source type')}: <strong>${c.extern_type}</strong>
</p>
% else:
${c.form.render() | n}
% endif
</%widgets:panel>