d74d93d9d9c0015bd24ec20d26a5496f9e37d5b6
[scpubgit/stemmatology.git] / stemmaweb / root / src / stexaminer.tt
1 [% BLOCK js %]
2     <script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
3     <script type="text/javascript" src="js/jquery-ui-1.8.10.custom.min.js"></script>
4     <script type="text/javascript" src="js/interaction.js"></script>
5 [% END %]
6
7 [% BLOCK variantrow -%]
8 [% SET rowclass = 'class="genealogical"' IF row.genealogical -%]
9 [% SET rowclass = 'class="coincidental"' UNLESS row.genealogical -%]
10         <tr [% rowclass %]>
11           <th><span class="rowid">[% row.id %]</span></th>
12 [% FOREACH reading IN row.readings -%]
13 [% SET cellclass = 'clickable conflict' IF reading.conflict -%]
14 [% SET cellclass = 'clickable' IF !reading.conflict -%]
15           <td class="[% cellclass %]"><span onclick="color_nodes($(this).parent().index(), [% reading.group %], [% reading.missing %]);$(this).parents('tr').addClass('active_variant_row');$(this).parent().addClass('active_variant_cell cellb'+($(this).parent().index()-1))">[% reading.text %]</span></td>
16 [% END -%]
17 [% FILTER repeat( row.empty ) -%]
18           <td/>
19 [% END -%]
20         </tr>
21 [% END -%]
22     <h1>Stexaminer</h1>
23     <h2>[% text_title %]</h2>
24     <div id="statistics">
25       <p>Analyzed [% total %] variant locations, of which [% genealogical %] entirely followed the stemma.  [% conflict %] readings conflicted with the stemma.</p>
26     </div>
27     <div id="svg_graph">
28       [% svg %]
29     </div>
30     <div id="variants_table">
31       <table>
32 [% FOREACH row IN variants -%]
33 [% INCLUDE variantrow %]
34 [% END -%]
35      </table>
36     </div>
37