source: products/vendor/Products.CacheSetup/current/Products/CacheSetup/skins/cache_setup/phcm_purge_squid.pt @ 3296

Last change on this file since 3296 was 3296, checked in by fenix, 12 years ago

Load Products.CacheSetup?-1.2.1 into vendor/Products.CacheSetup?/current.

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
2      lang="en"
3      metal:use-macro="here/main_template/macros/master"
4      i18n:domain="plone">
5
6<body>
7
8<div metal:fill-slot="main">
9  <h1 i18n:translate="purge_squid">Purge Squid</h1>
10  <form tal:attributes="action python:context.absolute_url()"
11        method="post">
12
13    <p>Purge all content associated with HTTPCache</p>
14    <input type="submit" class="context" name="purge_all" value="Purge All Associated Content" />
15
16    <h2>Purge specific objects</h2>
17    <fieldset>
18      <legend>Associated objects</legend>
19      <tal:content tal:define="associated_content python:context.HTTPCache.ZCacheManager_locate(1, 1)"
20                 tal:repeat="content_info associated_content">
21        <input type="checkbox" name="paths:list" value="content_info/path" />
22        <image tal:attributes="src content_info/icon" />
23        <span tal:content="content_info/path" />
24        (<span tal:content="content_info/title" />)<br />
25      </tal:content>
26      <input type="submit" class="context" name="purge_selected" value="Purge Selected Content" />
27    </fieldset>
28
29   
30  </form>
31</div>
32
33</body>
34</html>
Note: See TracBrowser for help on using the repository browser.