21 lines
360 B
HTML
21 lines
360 B
HTML
|
|
{{ the_div|safe }}
|
|
<p>
|
|
<table width="100%" class="listtable">
|
|
<thead>
|
|
<tr>
|
|
<th> Duration</th>
|
|
<th> Power Estimate 1</th>
|
|
<th> Power Estimate 2</th>
|
|
<tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ duration }}</td>
|
|
<td>{{ power }}</td>
|
|
<td>{{ upper }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</p>
|