source: products/qPloneTabs/tags/0.3.1/skins/qPloneTabs/qpt_getroottabs.pt @ 1591

Last change on this file since 1591 was 1, checked in by myroslav, 19 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 904 bytes
Line 
1<tal:tabs tal:define="dummy python:request.RESPONSE.setHeader('Expires', 'Mon, 26 Jul 1996 05:00:00 GMT')"
2          tal:repeat="tab python:modules['Products.qPloneTabs'].getRootTabs(here)">
3<li tal:define="id tab/id;
4                visible python:not tab['exclude_from_nav']"
5    tal:attributes="id string:tabslist_${id};
6                    title tab/description|nothing;
7                    class python:test(visible, '', 'invisible')">
8  <div class="bridge"><input type="checkbox" class="visibility" value="1" id="id" name="rootvis"  title="visibility"
9         tal:attributes="name string:i${repeat/tab/index}_${attrs/name};
10                         id id;
11                         checked python:test(visible, 'checked', None)" /></div>
12  <span class="url-helper" tal:content="python:tab['url']">Tab Action</span>
13  <span class="tab-title"  tal:content="tab/name">Tab Name</span>
14</li>
15</tal:tabs>
Note: See TracBrowser for help on using the repository browser.