source: trunk/trunk/templates/loadparameters-Sky.html.keep@ 2

Last change on this file since 2 was 2, checked in by JohnLightfoot, 10 years ago

initial import

File size: 897 bytes
Line 
1<%inherit file="loadparameters-base.html"/>
2
3 <div class="row-fluid">
4 <table class="table table-condensed" summary="parameters">
5 <tbody>
6 <tr>
7 <%
8 print 'here'
9 renderstage = context['renderstage']
10 rendersubstage = context['rendersubstage']
11 %>
12 % for name in context['data'][renderstage]['substages'][rendersubstage].keys():
13 <th>${name}</th>
14 % endfor
15 </tr>
16 <%
17 table = context['data'][renderstage]['substages'][rendersubstage]
18 print 'table', table
19 names = table.keys()
20 rows = table[names[0]].keys()
21 %>
22 % for row in rows:
23 <tr>
24 % for name in names:
25 <th>${table[name][row]}</th>
26 % endfor
27 </tr>
28 % endfor
29
30 </tbody>
31 </table>
32 <div>
Note: See TracBrowser for help on using the repository browser.