comparison rhodecode/templates/admin/settings/settings.html @ 3951:9378d8640a4b beta

Added extra flag to invalidate caches when doing rescan from web interface
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 05 Jun 2013 20:45:05 +0200
parents 985db7f7b9b2
children 5293d4bbb1ea
comparison
equal deleted inserted replaced
3950:1226fdf24f8a 3951:9378d8640a4b
37 <div class="checkbox"> 37 <div class="checkbox">
38 ${h.checkbox('destroy',True)} 38 ${h.checkbox('destroy',True)}
39 <label for="destroy"> 39 <label for="destroy">
40 <span class="tooltip" title="${h.tooltip(_('In case a repository was deleted from filesystem and there are leftovers in the database check this option to scan obsolete data in database and remove it.'))}"> 40 <span class="tooltip" title="${h.tooltip(_('In case a repository was deleted from filesystem and there are leftovers in the database check this option to scan obsolete data in database and remove it.'))}">
41 ${_('Destroy old data')}</span> </label> 41 ${_('Destroy old data')}</span> </label>
42 </div>
43 <div class="checkbox">
44 ${h.checkbox('invalidate',True)}
45 <label for="invalidate">
46 <span class="tooltip" title="${h.tooltip(_('Invalidate cache for all repositories during scan'))}">
47 ${_('Invalidate cache for all repositories')}</span> </label>
42 </div> 48 </div>
43 <span class="help-block">${_('Rescan repositories location for new repositories. Also deletes obsolete if `destroy` flag is checked ')}</span> 49 <span class="help-block">${_('Rescan repositories location for new repositories. Also deletes obsolete if `destroy` flag is checked ')}</span>
44 </div> 50 </div>
45 </div> 51 </div>
46 52