annotate zpt/toc_figures.zpt @ 91:b8c491e52ebc

new version with new full-text infrastructure and some more changed templates
author casties
date Thu, 08 Apr 2010 13:04:51 +0200
parents
children 9d08a21fdd83
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
91
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
1 <tal:block tal:define="docinfo options/docinfo; pageinfo options/pageinfo;
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
2 pn python:int(pageinfo['tocPN']); tocsize python:int(docinfo['tocSize_figures']); grpsize python:int(pageinfo['tocPageSize']);
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
3 maxpn python:int(tocsize/grpsize);">
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
4 <div class="thumbruler">
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
5 <span tal:condition="python:(pn>1)">
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
6 <a tal:attributes="href python:here.getLink(param='tocPN',val=pn-1)">&lt;</a>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
7 </span>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
8 <span tal:content="string:$pn of $maxpn"/>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
9 <span>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
10 <a tal:attributes="href python:here.getLink(param='tocPN',val=pn+1)">&gt;</a>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
11 </span>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
12 </div>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
13 <div tal:content="structure python:here.getTocPage(mode='figures',pageinfo=pageinfo,docinfo=docinfo)"/>
b8c491e52ebc new version with new full-text infrastructure and some more changed templates
casties
parents:
diff changeset
14 </tal:block>