##// END OF EJS Templates
auth: don't break hashing in case of user with empty password....
auth: don't break hashing in case of user with empty password. In some cases such as LDAP user created via external scripts users might set the passwords to empty. The hashing uses the md5(password_hash) to store reference to detect password changes and forbid using the same password. In case of pure LDAP users this is not valid, and we shouldn't raise Errors in such case. This change makes it work for empty passwords now.

File last commit:

r2105:4ad1a937 default
r2203:8a18c3c3 default
Show More
repo_edit_fields.mako
79 lines | 3.3 KiB | application/x-mako | MakoHtmlLexer
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Custom extra fields for this repository')}</h3>
</div>
<div class="panel-body">
%if c.visual.repository_fields:
%if c.repo_fields:
<div class="emails_wrap">
<table class="rctable edit_fields">
<th>${_('Label')}</th>
<th>${_('Key')}</th>
<th>${_('Type')}</th>
<th>${_('Action')}</th>
%for field in c.repo_fields:
<tr>
<td class="td-tags">${field.field_label}</td>
<td class="td-hash">${field.field_key}</td>
<td class="td-type">${field.field_type}</td>
<td class="td-action">
${h.secure_form(h.route_path('edit_repo_fields_delete', repo_name=c.rhodecode_db_repo.repo_name, field_id=field.repo_field_id), request=request)}
${h.hidden('del_repo_field',field.repo_field_id)}
<button class="btn btn-link btn-danger" type="submit"
onclick="return confirm('${_('Confirm to delete this field: %s') % field.field_key}');">
${_('Delete')}
</button>
${h.end_form()}
</td>
</tr>
%endfor
</table>
</div>
%endif
${h.secure_form(h.route_path('edit_repo_fields_create', repo_name=c.repo_name), request=request)}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="new_field_key">${_('New Field Key')}:</label>
</div>
<div class="input">
${h.text('new_field_key', class_='medium')}
</div>
</div>
<div class="field">
<div class="label">
<label for="new_field_label">${_('New Field Label')}:</label>
</div>
<div class="input">
${h.text('new_field_label', class_='medium', placeholder=_('Enter short label'))}
</div>
</div>
<div class="field">
<div class="label">
<label for="new_field_desc">${_('New Field Description')}:</label>
</div>
<div class="input">
${h.text('new_field_desc', class_='medium', placeholder=_('Enter a full description for the field'))}
</div>
</div>
<div class="buttons">
${h.submit('save',_('Add'),class_="btn")}
${h.reset('reset',_('Reset'),class_="btn")}
</div>
</div>
</div>
${h.end_form()}
%else:
<h2>
${_('Extra fields are disabled. You can enable them from the Admin/Settings/Visual page.')}
</h2>
%endif
</div>
</div>