diff --git a/rhodecode/templates/admin/settings/settings.html b/rhodecode/templates/admin/settings/settings.html
--- a/rhodecode/templates/admin/settings/settings.html
+++ b/rhodecode/templates/admin/settings/settings.html
@@ -40,6 +40,12 @@
${_('Destroy old data')}
+
+ ${h.checkbox('invalidate',True)}
+
+
+ ${_('Invalidate cache for all repositories')}
+
${_('Rescan repositories location for new repositories. Also deletes obsolete if `destroy` flag is checked ')}
@@ -130,18 +136,26 @@
- ${h.checkbox('rhodecode_lightweight_dashboard','True')}
- ${_('Use lightweight dashboard')}
-
-
-
-
${h.checkbox('rhodecode_repository_fields','True')}
${_('Use repository extra fields')}
+
${_('Allows storing additional customized fields per repository.')}
+
+ ${h.checkbox('rhodecode_show_version','True')}
+ ${_('Show RhodeCode version')}
+
+
${_('Shows or hides displayed version of RhodeCode in the footer')}
-
+
+
+ ${_('Dashboard items')}:
+
+
+ ${h.text('rhodecode_dashboard_items',size=5)}
+ ${_('Number of items displayed in lightweight dashboard before pagination is shown.')}
+
+
${_('Icons')}:
@@ -155,6 +169,7 @@
${h.checkbox('rhodecode_show_private_icon','True')}
${_('Show private repo icon on repositories')}
+
${_('Show public/private icons next to repositories names')}
@@ -259,20 +274,21 @@
##${_('Requires hg-git library installed. Allows cloning from git remote locations')}
+ %if c.visual.allow_repo_location_change:
${_('Repositories location')}:
- ${h.text('paths_root_path',size=30,readonly="readonly")}
-
+ ${h.text('paths_root_path',size=30,readonly="readonly", class_="disabled")}
+
${_('Unlock')}
${_('Location where repositories are stored. After changing this value a restart, and rescan is required')}
-
+ %endif
${h.submit('save',_('Save settings'),class_="ui-btn large")}
${h.reset('reset',_('Reset'),class_="ui-btn large")}
@@ -283,8 +299,9 @@