Mercurial > hg > documentViewer
annotate zpt/toc_figures.zpt @ 487:8fd6f26fe29e elementtree
more new templates
author | casties |
---|---|
date | Tue, 23 Aug 2011 15:05:11 +0200 |
parents | 7ca8ac7db06e |
children | ec3d848fe9e8 |
rev | line source |
---|---|
481 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
3 <html xmlns="http://www.w3.org/1999/xhtml"> | |
4 <head> | |
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
6 </head> | |
7 <body> | |
8 <!-- block used for main content area --> | |
9 <div class="col_left" metal:define-macro="main" | |
482
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
10 tal:define="start pageinfo/start; tocsize docinfo/tocSize_figures; grpsize pageinfo/tocPageSize; |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
11 batch python:here.getBatch(start=start,size=grpsize,end=tocsize);"> |
481 | 12 <ul class="switcher"> |
13 <li><a | |
14 tal:attributes="href python:here.getLink('tocMode','thumbs')">Thumbnails</a> | |
15 </li> | |
16 <li | |
17 tal:condition="python:docpath and docinfo.get('numTocEntries', None)"> | |
18 <a tal:attributes="href python:here.getLink('tocMode','text')">Content</a> | |
19 </li> | |
482
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
20 <li class="sel" |
481 | 21 tal:condition="python:docpath and docinfo.get('numFigureEntries', None)"> |
22 <a | |
23 tal:attributes="href python:here.getLink('tocMode','figures')">Figures</a> | |
24 </li> | |
25 <li><a | |
26 tal:attributes="href python:here.getLink('tocMode','none')">None</a> | |
27 </li> | |
28 </ul> | |
29 <div class="ruler"> | |
30 <form class="autosubmit" tal:attributes="action viewerUrl"> | |
31 <input type="hidden" | |
482
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
32 tal:define="params python:here.getParams('start', None)" |
481 | 33 tal:repeat="param params" |
34 tal:attributes="name param; value python:params[param]" /> | |
482
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
35 <a tal:condition="batch/prevStart" |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
36 tal:attributes="href python:here.getLink('start',batch['prevStart'])"><</a> |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
37 <span tal:condition="not:batch/prevStart"><</span> |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
38 <select class="autosubmit" name="start"> |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
39 <option tal:repeat="grp batch/batches" |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
40 tal:attributes="selected python:(start==grp['start']); value grp/start" |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
41 tal:content="string:${grp/start} - ${grp/end}" /> |
481 | 42 </select> |
43 <input type="submit" value="Go" /> | |
482
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
44 <a tal:condition="batch/nextStart" |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
45 tal:attributes="href python:here.getLink('start',batch['nextStart'])">></a> |
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
46 <span tal:condition="not:batch/nextStart">></span> |
481 | 47 </form> |
48 </div> | |
49 <div class="content" | |
482
7ca8ac7db06e
more new template stuff. more batching methods in documentViewer.
casties
parents:
481
diff
changeset
|
50 tal:content="structure python:here.getTocPage(mode='figures',start=start,pageinfo=pageinfo,docinfo=docinfo)" /> |
481 | 51 </div> |
52 <!-- toc --> | |
53 </body> | |
54 </html> |