Files
edx-platform/tab_module.html
2011-12-08 04:02:28 +00:00

15 lines
209 B
HTML

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