##// END OF EJS Templates
Issue #5536 - ability to disable server-side SSH key generation...
Issue #5536 - ability to disable server-side SSH key generation - Fixes #5536

File last commit:

r1282:90601d74 default
r3478:6cd9b768 default
Show More
my_account_password.mako
13 lines | 395 B | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <%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>