##// END OF EJS Templates
auth: Fix password_changed function, fixes #4043....
auth: Fix password_changed function, fixes #4043. Never repot a changed password for default or anonymous users. If anonymous access is disabled we don't get the default user here so we also have to check if it is the anonymous user. In both cases (default user and anonymous user) we can skip the password change check and return False.

File last commit:

r225:48a40e43 default
r482:930b0a4d default
Show More
repo_group_edit_settings.html
84 lines | 3.6 KiB | text/html | HtmlLexer
/ rhodecode / templates / admin / repo_groups / repo_group_edit_settings.html
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
repos, repo groups, user groups: visually show what user is an owner, and if...
r225 <%namespace name="base" file="/base/base.html"/>
project: added all source files and assets
r1 <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Settings for Repository Group: %s') % c.repo_group.name}</h3>
</div>
<div class="panel-body">
${h.secure_form(url('update_repo_group',group_name=c.repo_group.group_name),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="group_name">${_('Group Name')}:</label>
</div>
<div class="input">
${h.text('group_name',class_='medium')}
</div>
</div>
repos, repo groups, user groups: visually show what user is an owner, and if...
r225
<div class="field badged-field">
project: added all source files and assets
r1 <div class="label">
<label for="user">${_('Owner')}:</label>
</div>
<div class="input">
repos, repo groups, user groups: visually show what user is an owner, and if...
r225 <div class="badge-input-container">
<div class="user-badge">
${base.gravatar_with_user(c.repo_group.user.email, show_disabled=not c.repo_group.user.active)}
</div>
<div class="badge-input-wrap">
${h.text('user', class_="medium", autocomplete="off")}
</div>
</div>
<form:error name="user"/>
<p class="help-block">${_('Change owner of this repository group.')}</p>
project: added all source files and assets
r1 </div>
</div>
repos, repo groups, user groups: visually show what user is an owner, and if...
r225
project: added all source files and assets
r1 <div class="field">
<div class="label label-textarea">
<label for="group_description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('group_description',cols=23,rows=5,class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
<label for="group_parent_id">${_('Group parent')}:</label>
</div>
<div class="select">
${h.select('group_parent_id','',c.repo_groups,class_="medium")}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="enable_locking">${_('Enable Repository Locking')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('enable_locking',value="True")}
<span class="help-block">${_('Repository locking will be enabled on all subgroups and repositories inside this repository group. Pulling from a repository locks it, and it is unlocked by pushing back by the same user.')}</span>
</div>
</div>
<div class="buttons">
${h.submit('save',_('Save'),class_="btn")}
${h.reset('reset',_('Reset'),class_="btn")}
</div>
</div>
</div>
${h.end_form()}
</div>
</div>
<script>
$(document).ready(function(){
$("#group_parent_id").select2({
'containerCssClass': "drop-menu",
'dropdownCssClass': "drop-menu-dropdown",
'dropdownAutoWidth': true
});
UsersAutoComplete('user', '${c.rhodecode_user.user_id}');
})
</script>