view kallithea/templates/admin/repos/repo_edit_caches.html @ 6277:4304595d246c

style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names Based on work by Dominik Ruf. Mostly: sed -i \ -e 's,<table>,<table class="table">,g' \ -e 's,<div class="fields">,<div class="form-horizontal">,g' \ -e 's,<div class="field">,<div class="form-group">,g' \ -e 's,<label for="\([^"]*\)">,<label class="control-label" for="\1">,g' \ `hg mani` cat kallithea/public/css/style.css | \ sed -e '/\.fields\>/{p;s/\.fields/.form-horizontal/g}' | \ sed -e '/\.fields\>/s/ {$/,/g' | \ sed -e '/\.field\>/{p;s/\.field\>/.form-group/g}' | \ sed -e '/\.field\>/s/ {$/,/g' | \ sed -e '/\.fields\>.*\.form-group\>/d' | \ sed -e '/\.form-horizontal\>.*\.field\>/d ' | \ cat - > kallithea/public/css/style.css.tmp mv kallithea/public/css/style.css.tmp kallithea/public/css/style.css
author Mads Kiilerich <madski@unity3d.com>
date Mon, 24 Oct 2016 21:45:09 +0200
parents b7654d1675da
children a810db90098e
line wrap: on
line source

${h.form(url('update_repo_caches', repo_name=c.repo_name))}
<div class="form">
   <div class="fields">
       ${h.submit('reset_cache_%s' % c.repo_info.repo_name,_('Invalidate Repository Cache'),class_="btn btn-default btn-sm")}
      <div class="field" style="border:none;color:#888">
      <ul>
          <li>${_('Manually invalidate cache for this repository. On first access, the repository will be cached again.')}
          </li>
      </ul>
      </div>
      <div class="field" style="border:none;">
        ${_('List of Cached Values')}
           <table class="table">
           <tr>
            <th>${_('Prefix')}</th>
            <th>${_('Key')}</th>
            <th>${_('Active')}</th>
            </tr>
          %for cache in c.repo_info.cache_keys:
              <tr>
                <td>${cache.get_prefix() or '-'}</td>
                <td>${cache.cache_key}</td>
                <td>${h.boolicon(cache.cache_active)}</td>
              </tr>
          %endfor
          </table>
      </div>
   </div>
</div>
${h.end_form()}