diff options
author | luxagraf <sng@luxagraf.net> | 2024-03-19 08:20:31 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-03-19 08:20:31 -0500 |
commit | 33e50f81111a5ad7833aa7b5498126468d7f11e8 (patch) | |
tree | d201dd254b623448b828bb18fa0c5dcb164907c3 | |
parent | 64790699aa579345cf968e23386132ce1a5956bd (diff) |
sight: added some spacing and updated count
-rw-r--r-- | app/sightings/templates/sightings/year-list.html | 10 |
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> </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> |