Groundwork for formula support. Lots of other details

This commit is contained in:
Piotr Mitros
2011-12-15 07:52:29 -05:00
parent 5385a02428
commit 4e80e5c3bd
6 changed files with 100 additions and 50 deletions

View File

@@ -1,12 +1,15 @@
<script>
</script>
<div id="tabs">
<ul>
% for t in tabs:
<li> <a href="#tabs-${tabs.index(t)}">${t[0]}</a>
% for t in items:
<li> <a href="#tabs-${items.index(t)}">${t[0]}</a>
% endfor
</ul>
% for t in tabs:
<div id="tabs-${tabs.index(t)}">
% for t in items:
<div id="tabs-${items.index(t)}">
${t[1]['content']}
</div>
% endfor