~gctaa/bottlezoo/trunk

« back to all changes in this revision

Viewing changes to todo/views/make_table.tpl

  • Committer: icabob4 at gmail
  • Date: 2013-07-30 13:59:00 UTC
  • Revision ID: icabob4@gmail.com-20130730135900-rs49ngvpoyin7fu1
simplified templates for first two lessons

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>{{heading}}</h2>
 
2
<table>
 
3
%for row in rows:
 
4
<tr>
 
5
  %for col in row:
 
6
    <td>{{col}}</td>
 
7
  %end
 
8
</tr>
 
9
%end
 
10
</table>
 
11
 
 
12
%rebase layout