${h.form(url('admin_settings'), method='post')}
${h.checkbox('web_push_ssl', 'True')}
${_('Activate to require SSL both pushing and pulling. If SSL certificate is missing, it will return an 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. Enables cloning of remote Subversion repositories while converting them to Mercurial.')} ##
## ${h.checkbox('extensions_hggit','True')} ## ##
##${_('Requires hg-git library to be installed. Enables cloning of remote Git repositories while converting them to Mercurial.')}
%if c.visual.allow_repo_location_change:
${h.text('paths_root_path',size=60,readonly="readonly")}
${_('Filesystem location where repositories are stored. After changing this value, a restart and rescan of the repository folder are both required.')}
%else: ## form still requires this but we cannot internally change it anyway ${h.hidden('paths_root_path',size=30,readonly="readonly")} %endif
${h.submit('save',_('Save Settings'),class_="btn")} ${h.reset('reset',_('Reset'),class_="btn")}
${h.end_form()}