summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2024-03-19 08:20:31 -0500
committerluxagraf <sng@luxagraf.net>2024-03-19 08:20:31 -0500
commit33e50f81111a5ad7833aa7b5498126468d7f11e8 (patch)
treed201dd254b623448b828bb18fa0c5dcb164907c3
parent64790699aa579345cf968e23386132ce1a5956bd (diff)
sight: added some spacing and updated count
-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>