summaryrefslogtreecommitdiff
path: root/iss/templates
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2020-09-28 11:06:17 +0300
committerYuval Adam <_@yuv.al>2020-09-28 11:06:17 +0300
commit6ca40df643842932c9b36557ce69fd7a2ed0e6c4 (patch)
tree2a8ba7ee8273bc0cc28c8c804fd47f8a7b342cb7 /iss/templates
parent891cbb41f9be3074549ff93cda3db22210bb1321 (diff)
Calculate pass length
Diffstat (limited to 'iss/templates')
-rw-r--r--iss/templates/index.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/iss/templates/index.html b/iss/templates/index.html
index 6c93254..5c498c7 100644
--- a/iss/templates/index.html
+++ b/iss/templates/index.html
@@ -1,13 +1,15 @@
{% extends "base.html" %}
{% block content %}
-<table class="ba tl pa1">
+<table class="tl pa1">
<tr class="ba tc pa1 f3">
+ <th colspan="1">Total</th>
<th colspan="2">Rise</th>
<th colspan="4">Culminate</th>
<th colspan="2">Set</th>
</tr>
<tr class="pa1 f4">
+ <th>Length</th>
<th>Time</th>
<th>Azimuth</th>
<th>Time</th>
@@ -19,6 +21,7 @@
</tr>
{% for pred in predictions %}
<tr class="pa1">
+ <td>{{ pred.length }}</td>
<td>{{ pred.rise.time }}</td>
<td>{{ pred.rise.azimuth }}</td>
<td>{{ pred.culminate.time }}</td>