Skip to content
Snippets Groups Projects
Commit eedbf549 authored by Branson Stephens's avatar Branson Stephens
Browse files

Removed FAR from basic info table for GRB events. No such thing.

parent 6a89a692
No related branches found
No related tags found
No related merge requests found
......@@ -537,6 +537,7 @@
<p>{{ message }}</p>
<div class="content-area">
{% block basic_info %}
<h3> Basic Info </h3>
<table class="event">
......@@ -585,6 +586,7 @@
</tr>
</table>
{% endblock %}
</div>
<div class="content-area">
......
{% extends "gracedb/event_detail.html" %}
{% load timeutil %}
{% block basic_info %}
<h3> Basic Info </h3>
<table class="event">
{% if skyalert_authorized %}
<tr><td colspan="4">
<a href="{% url skyalert object.graceid %}"><button type="button">Submit to Skyalert</button></a>
</td></tr>
{% endif %}
<tr>
<th valign="top">UID</th>
<th>Labels</th>
<th>Group</th>
<th>Type</th>
<th>Instruments</th>
<th>
{{ "gps"|timeselect:"gps" }}
Event Time
</th>
<th>Links</th>
<th>
{{"created"|timeselect:"utc" }}
Submitted
</th>
</tr>
<tr>
<td>{{ object.graceid }}</td>
<td>
{% for labelling in object.labelling_set.all %}
<span onmouseover="tooltip.show(tooltiptext('{{labelling.label.name}}', '{{labelling.creator.name}}', '{{labelling.created|utc}}'));" onmouseout="tooltip.hide();" style="color: {{labelling.label.defaultColor}}">{{ labelling.label.name }}</span>
{% endfor %}
</td>
<td>{{ object.group.name }} </td>
<td>{{ object.get_analysisType_display }} </td>
<td>{{ object.instruments }}</td>
<td>{% if object.gpstime%}
<!-- <span title="{{ object.gpstime|gpsdate }}">{{ object.gpstime }}</span> -->
{{ object.gpstime|multiTime:"gps" }}
{% endif %}</td>
<td><a href="{{ object.weburl }}">Data</a></td>
<td>{{ object.created|multiTime:"created" }}</td>
</tr>
</table>
{% endblock %}
{% block analysis_specific %}
{% if object.grbevent %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment