diff --git a/templates/gracedb/latest.html b/templates/gracedb/latest.html index 178a86dabc14033809d6806d2936f28d6f9b6196..31af6a50939a0529777a4352f5fddc2d7d7355dc 100644 --- a/templates/gracedb/latest.html +++ b/templates/gracedb/latest.html @@ -97,16 +97,6 @@ </form> {% if objects %} - <table class="timeselect"> - <tr> - <td>Show Event Time As:</td> - <td>{{ "event"|timeselect:"gps" }}</td> - </tr> - <tr> - <td>Show Record Creation Time As:</td> - <td>{{ "created"|timeselect:"utc" }}</td> - </tr> - </table> <hr/> {% for item in objects %} <div class="summary"> @@ -132,13 +122,13 @@ <table> <tr><th>FAR:</th> - <td> {{ item.far|scientific }} Hz</td></tr> + <td> {{ item.far|scientific }} {% if item.far %}Hz{% endif %}</td></tr> <tr><th>Event Time:</th> - <td> {{ item.gpstime|multiTime:"event" }} </td></tr> + <td> {{ item.gpstime }} </td></tr> <tr><th>Latency:</th> - <td> {{ item.reportingLatency }} seconds</td></tr> + <td> {{ item.reportingLatency }} {% if item.reportingLatency %}seconds{% endif %}</td></tr> <tr><th>Created:</th> - <td> {{ item.created|multiTime:"created" }} </td></tr> + <td> {{ item.created|utc }} </td></tr> </table> </div><!-- class summary -->