mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-04 23:06:24 -04:00
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
## toc.myt - prints table of contents listings given toc.TOCElement strucures
|
|
|
|
<%def name="toc(toc, paged, extension)">
|
|
<div class="topnav">
|
|
|
|
<a name="table_of_contents"></a>
|
|
<h3>Table of Contents</h3>
|
|
|
|
<a href="#full_index" class="totoc">(view full table)</a>
|
|
${printtoc(root=toc,paged=paged, extension=extension, current=None,children=False,anchor_toplevel=False)}
|
|
|
|
<a name="full_index"></a>
|
|
<h3>Table of Contents: Full</h3>
|
|
|
|
<a href="#table_of_contents" class="totoc">(view brief table)</a>
|
|
|
|
${printtoc(root=toc,paged=paged, extension=extension, current=None,children=True,anchor_toplevel=False)}
|
|
|
|
</div>
|
|
</%def>
|
|
|
|
|
|
<%def name="printtoc(root, paged, extension, current=None, children=True, anchor_toplevel=False)">
|
|
% if root.children:
|
|
<ul>
|
|
% for item in root.children:
|
|
<%
|
|
anchor = anchor_toplevel
|
|
if paged and item.filename != root.filename:
|
|
anchor = False
|
|
%>
|
|
<li><a style="${item is current and "font-weight:bold;" or "" }" href="${item.get_link(extension=extension,anchor=anchor, usefilename=paged) }">${item.description}</a></li>
|
|
|
|
% if children and item.children:
|
|
<li>
|
|
${printtoc(item, current=current, children=True,anchor_toplevel=True, paged=paged, extension=extension)}
|
|
</li>
|
|
% endif
|
|
% endfor
|
|
</ul>
|
|
% endif
|
|
</%def>
|
|
|