summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/sightings/templates/sightings/year-list.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/sightings/templates/sightings/year-list.html b/app/sightings/templates/sightings/year-list.html
index 40abb89..2f7702b 100644
--- a/app/sightings/templates/sightings/year-list.html
+++ b/app/sightings/templates/sightings/year-list.html
@@ -26,6 +26,9 @@
<thead>
<tr>
<th scope="col" class="sortable column-title">
+ <div class="text"><span>&nbsp;</span></div>
+</th>
+<th scope="col" class="sortable column-title">
<div class="text"><span>Species</span></div>
</th>
<th scope="col" class="sortable column-title">
@@ -39,12 +42,15 @@
<tbody>{% for object in object_list %}
<tr>
<td class="field-title">
+ {{forloop.counter}}
+ </td>
+ <td class="field-title wide">
<a href="{{object.ap.get_absolute_url}}" title="{{object.ap}}">{{object.ap|safe|smartypants|widont}}</a>
</td>
- <td class="field-admin_url">
+ <td class="field-admin_url wide">
{{object.location}}
</td>
- <td class="field-admin_url">
+ <td class="field-admin_url wide">
{{object.pub_date|date:"F d, Y"}}
</td>
</tr>