comparison rhodecode/templates/admin/repos/repo_edit.html @ 3606:c8ecfe42b285 beta

invalidation: some documentation and refactoring
author Mads Kiilerich <madski@unity3d.com>
date Tue, 26 Mar 2013 23:15:16 +0100
parents eacd33e0c5b3
children 32cb8d45f330
comparison
equal deleted inserted replaced
3605:1f6d8a00a4b5 3606:c8ecfe42b285
217 <th>${_('Key')}</th> 217 <th>${_('Key')}</th>
218 <th>${_('Active')}</th> 218 <th>${_('Active')}</th>
219 </tr> 219 </tr>
220 %for cache in c.repo_info.cache_keys: 220 %for cache in c.repo_info.cache_keys:
221 <tr> 221 <tr>
222 <td>${cache.prefix or '-'}</td> 222 <td>${cache.get_prefix() or '-'}</td>
223 <td>${cache.cache_key}</td> 223 <td>${cache.cache_key}</td>
224 <td>${h.bool2icon(cache.cache_active)}</td> 224 <td>${h.bool2icon(cache.cache_active)}</td>
225 </tr> 225 </tr>
226 %endfor 226 %endfor
227 </table> 227 </table>