${h.form(url('admin_settings_visual'), method='post')}
${_('Allows storing additional customized fields per repository.')}
${_('Shows or hides a version number of Kallithea displayed in the footer.')}
${h.text('gravatar_url', size=80, class_='form-control')} ${_('''Gravatar URL allows you to use another avatar server application. The following variables of the URL will be replaced accordingly. {scheme} 'http' or 'https' sent from running Kallithea server, {email} user email, {md5email} md5 hash of the user email (like at gravatar.com), {size} size of the image that is expected from the server application, {netloc} network location/server host of running Kallithea server''')}
${h.text('clone_uri_tmpl', size=80, class_='form-control')} ${_('''Schema of clone URL construction eg. '{scheme}://{user}@{netloc}/{repo}'. The following variables are available: {scheme} 'http' or 'https' sent from running Kallithea server, {user} current user username, {netloc} network location/server host of running Kallithea server, {repo} full repository name, {repoid} ID of repository, can be used to construct clone-by-id, {system_user} name of the Kallithea system user, {hostname} server hostname ''')}
%if c.ssh_enabled:
${h.text('clone_ssh_tmpl', size=80, class_='form-control')} ${_('''Schema for constructing SSH clone URL, eg. 'ssh://{system_user}@{hostname}/{repo}'.''')}
%else: ${h.hidden('clone_ssh_tmpl', size=80, class_='form-control')} %endif
${h.text('dashboard_items',size=5,class_='form-control')} ${_('Number of items displayed in the repository pages before pagination is shown.')}
${h.text('admin_grid_items',size=5,class_='form-control')} ${_('Number of items displayed in the admin pages grids before pagination is shown.')}
${_('Show public/private icons next to repository names.')}
${_('Stylify recognised meta tags:')}
  • [featured] featured
  • [stale] stale
  • [dead] dead
  • [lang => lang] lang
  • [license => License] License
  • [requires => Repo] requires => Repo
  • [recommends => Repo] recommends => Repo
  • [see => URI] see => URI
${h.submit('save',_('Save Settings'),class_="btn btn-default")} ${h.reset('reset',_('Reset'),class_="btn btn-default")}
${h.end_form()}