source: products/qPloneTabs/trunk/skins/qPloneTabs/qpt_getroottabs.pt @ 1591

Last change on this file since 1591 was 34, checked in by myroslav, 18 years ago

correcting iframe bug

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1<metal:block use-macro="here/global_defines/macros/defines" />
2
3<tal:cache tal:define="lang language;
4                       charset site_properties/default_charset|string:utf-8">
5  <metal:cache use-macro="here/global_cache_settings/macros/cacheheaders">
6    Get the global cache headers located in global_cache_settings.
7  </metal:cache>
8</tal:cache>
9
10<tal:tabs tal:define="dummy python:request.RESPONSE.setHeader('Expires', 'Mon, 26 Jul 1996 05:00:00 GMT')"
11          tal:repeat="tab python:modules['Products.qPloneTabs'].getRootTabs(here)">
12<li tal:define="id tab/id;
13                visible python:not tab['exclude_from_nav']"
14    tal:attributes="id string:tabslist_${id};
15                    title tab/description|nothing;
16                    class python:test(visible, '', 'invisible')">
17  <div class="bridge"><input type="checkbox" class="visibility" value="1" id="id" name="rootvis"  title="visibility"
18         tal:attributes="name string:i${repeat/tab/index}_${attrs/name};
19                         id id;
20                         checked python:test(visible, 'checked', None)" /></div>
21  <span class="url-helper" tal:content="python:tab['url']">Tab Action</span>
22  <span class="tab-title"  tal:content="tab/name">Tab Name</span>
23</li>
24</tal:tabs>
Note: See TracBrowser for help on using the repository browser.