Files
@ b52a66c5755f
Branch filter:
Location: kallithea/kallithea/templates/admin/settings/settings_mapping.html - annotation
b52a66c5755f
2.2 KiB
text/html
style: replace action_button with Bootstrap compatible btn class names
Based on work by Dominik Ruf.
Based on work by Dominik Ruf.
d1addaf7a91e d1addaf7a91e 4304595d246c 4304595d246c d1addaf7a91e 4304595d246c d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e 97a20b808e5b d1addaf7a91e 97a20b808e5b d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e dacdea9fda2a d1addaf7a91e d1addaf7a91e d1addaf7a91e dacdea9fda2a d1addaf7a91e dacdea9fda2a c3d83238afa1 c3d83238afa1 c3d83238afa1 c3d83238afa1 c3d83238afa1 d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e b7654d1675da d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e | ${h.form(url('admin_settings_mapping'), method='post')}
<div class="form">
<div class="form-horizontal">
<div class="form-group">
<div class="label label-checkbox">
<label class="control-label" for="destroy">${_('Rescan option')}:</label>
</div>
<div class="checkboxes">
<div class="checkbox">
${h.checkbox('destroy',True)}
<label for="destroy">${_('Delete records of missing repositories')}</label>
</div>
<span class="help-block">${_('Check this option to remove all comments, pull requests and other records related to repositories that no longer exist in the filesystem.')}</span>
<div class="checkbox">
${h.checkbox('invalidate',True)}
<label for="invalidate"> ${_('Invalidate cache for all repositories')}</label>
</div>
<span class="help-block">${_('Check this to reload data and clear cache keys for all repositories.')}</span>
<div class="checkbox">
${h.checkbox('hooks',True)}
<label for="hooks"> ${_('Install Git hooks')} </label>
</div>
<span class="help-block">${_("Verify if Kallithea's Git hooks are installed for each repository. Current hooks will be updated to the latest version.")}</span>
<div class="checkbox">
${h.checkbox('hooks_overwrite', True)}
<label for="hooks_overwrite"> ${_('Overwrite existing Git hooks')}</label>
</div>
<span class="help-block">${_("If installing Git hooks, overwrite any existing hooks, even if they do not seem to come from Kallithea. WARNING: This operation will destroy any custom git hooks you may have deployed by hand!")}</span>
</div>
</div>
<div class="buttons">
${h.submit('rescan',_('Rescan Repositories'),class_="btn btn-default")}
</div>
</div>
</div>
${h.end_form()}
|