1 <!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
4 <meta http-equiv='Content-Type' content='text/html; charset=utf-
8'
>
5 <title>{{ title|escape }}
</title>
6 <link rel='stylesheet' href='style.css' type='text/css'
>
8 <link rel='stylesheet' href='{{ extra_css }}' type='text/css'
>
10 <script type='text/javascript' src='jquery.min.js'
></script>
11 <script type='text/javascript' src='jquery.tablesorter.min.js'
></script>
12 <script type='text/javascript' src='jquery.hotkeys.js'
></script>
13 <script type='text/javascript' src='coverage_html.js'
></script>
14 <script type='text/javascript' charset='utf-
8'
>
15 jQuery(document).ready(coverage.index_ready);
22 <h1>{{ title|escape }}:
23 <span class='pc_cov'
>{{totals.pc_covered_str}}%
</span>
25 <img id='keyboard_icon' src='keybd_closed.png'
>
29 <div class='help_panel'
>
30 <img id='panel_icon' src='keybd_open.png'
>
31 <p class='legend'
>Hot-keys on this page
</p>
34 <span class='key'
>n
</span>
35 <span class='key'
>s
</span>
36 <span class='key'
>m
</span>
37 <span class='key'
>x
</span>
39 <span class='key'
>b
</span>
40 <span class='key'
>p
</span>
42 <span class='key'
>c
</span> change column sorting
50 {# The title='' attr doesn't work in Safari. #}
51 <tr class='tablehead' title='Click to sort'
>
52 <th class='name left headerSortDown shortkey_n'
>Module
</th>
53 <th class='shortkey_s'
>statements
</th>
54 <th class='shortkey_m'
>missing
</th>
55 <th class='shortkey_x'
>excluded
</th>
57 <th class='shortkey_b'
>branches
</th>
58 <th class='shortkey_p'
>partial
</th>
60 <th class='right shortkey_c'
>coverage
</th>
63 {# HTML syntax requires thead, tfoot, tbody #}
66 <td class='name left'
>Total
</td>
67 <td>{{totals.n_statements}}
</td>
68 <td>{{totals.n_missing}}
</td>
69 <td>{{totals.n_excluded}}
</td>
71 <td>{{totals.n_branches}}
</td>
72 <td>{{totals.n_partial_branches}}
</td>
74 <td class='right'
>{{totals.pc_covered_str}}%
</td>
78 {% for file in files %}
80 <td class='name left'
><a href='{{file.html_filename}}'
>{{file.name}}
</a></td>
81 <td>{{file.nums.n_statements}}
</td>
82 <td>{{file.nums.n_missing}}
</td>
83 <td>{{file.nums.n_excluded}}
</td>
85 <td>{{file.nums.n_branches}}
</td>
86 <td>{{file.nums.n_partial_branches}}
</td>
88 <td class='right'
>{{file.nums.pc_covered_str}}%
</td>
98 <a class='nav' href='{{__url__}}'
>coverage.py v{{__version__}}
</a>