source: products/quintagroup.plonetabs/branches/nokss/quintagroup/plonetabs/browser/templates/autogeneratedlist.pt @ 3680

Last change on this file since 3680 was 502, checked in by piv, 18 years ago

merge css, renaming classes, added div.bridge

  • Property svn:eol-style set to native
File size: 867 bytes
Line 
1<metal:header_macro use-macro="context/@@plonetabs-header-macro/macros/header" />
2
3<tal:tabs tal:define="dummy python:request.RESPONSE.setHeader('Expires', 'Mon, 26 Jul 1996 05:00:00 GMT')"
4          tal:repeat="tab view/getRootTabs">
5<li tal:define="id tab/id;
6                visible not: tab/exclude_from_nav"
7    tal:attributes="id string:roottabs_${id};
8                    title tab/description|nothing;
9                    class python:view.test(visible, '', 'invisible')">
10  <div class="bridge">
11    <input type="checkbox" class="visibility" value="1" name="id"  title="visibility"
12           tal:attributes="name id;
13                           checked python:view.test(visible, 'checked', None)" />
14  </div>
15  <span class="tab-title"  tal:content="tab/name">Tab Name</span>
16  <span class="url-helper" tal:content="tab/url">Tab Action</span>
17</li>
18</tal:tabs>
Note: See TracBrowser for help on using the repository browser.