source: trunk/templates/pointingerrors.html@ 17

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

initial import

File size: 651 bytes
Line 
1<%inherit file="base.html"/>
2
3<!-- do the plotting -->
4<%
5import matplotlib.pyplot as plt
6import os.path
7%>
8
9 <div class="row-fluid">
10 <table class="table table-condensed" summary="Pointing Errors">
11 <tbody>
12 <%
13 pointingerrors = context['data']['pointingerrors']
14 %>
15 % for k,v in pointingerrors.items():
16 <!-- don't render large arrays-->
17 % if k not in ['primary beam']:
18 <tr>
19 <td>${k}</td>
20 <td>${v}</td>
21 </tr>
22 % endif
23 % endfor
24 </tbody>
25 </table>
26 <div>
27
28<!-- link to the plot from html -->
Note: See TracBrowser for help on using the repository browser.