${h.form(url('admin_settings'), method='post')}
${h.checkbox('web_push_ssl', 'True')}
${_('Activate to set RhodeCode to require SSL for pushing or pulling. If SSL certificate is missing it will return a HTTP Error 406: Not Acceptable.')}
${h.checkbox('hooks_changegroup_repo_size','True')}
${h.checkbox('hooks_changegroup_push_logger','True')}
${h.checkbox('hooks_outgoing_pull_logger','True')}
${h.checkbox('hooks_changegroup_update','True')}
${h.checkbox('extensions_largefiles','True')}
${h.checkbox('extensions_hgsubversion','True')}
${_('Requires hgsubversion library to be installed. Allows cloning remote SVN repositories and migrates them to Mercurial type.')} ##
## ${h.checkbox('extensions_hggit','True')} ## ##
##${_('Requires hg-git library to be installed. Allows cloning remote git repositories and migrates them to Mercurial type.')}
%if c.visual.allow_repo_location_change:
${h.text('paths_root_path',size=60,readonly="readonly", class_="disabled")}
${_('Filesystem location where repositories should be stored. After changing this value a restart and rescan of the repository folder are required.')}
%else: ## form still requires this but we cannot internally change it anyway ${h.hidden('paths_root_path',size=30,readonly="readonly", class_="disabled")} %endif
${h.submit('save',_('Save settings'),class_="btn")} ${h.reset('reset',_('Reset'),class_="btn")}
${h.end_form()}