Newer
Older
{% block title %}{{ title }}{% endblock %}
{% block heading %}{{ title }}{% endblock %}
{% block pageid %}search{% endblock %}
{% block content %}
<p>{{ message }}</p>
{% if object_list.count %}
<th>
{{ "gps"|timeselect:"gps" }}
Event Time
</th>
<th colspan="2">Links</th>
<th>
{{"created"|timeselect:"utc" }}
Submitted
</th>
</tr>
{% for obj in object_list %}
<tr class={% cycle 'odd' 'even' %}>
<td><a href="{% url view obj.graceid %}">{{ obj.graceid }}</a></td>
<td>
{% for labelling in obj.labelling_set.all %}
<span title="{{labelling.creator.name}} {{labelling.created|utc}}" style="color: {{labelling.label.defaultColor}}">{{ labelling.label.name }}</span>
{% endfor %}
</td>
<!-- <span title="{{ obj.gpstime|gpsdate }}">{{ obj.gpstime }}</span> -->
{{ obj.gpstime|multiTime:"gps" }}
{% endif %}
</td>
<td><a href="{{ obj.weburl }}">Data</a></td>
<td><a href="{{ obj.wikiurl }}">Wiki</a></td>
<td>{{ obj.created|multiTime:"created" }}</td>