diff options
Diffstat (limited to 'templates/personindex.html')
-rw-r--r-- | templates/personindex.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/personindex.html b/templates/personindex.html index 210fe4a..e21d7e6 100644 --- a/templates/personindex.html +++ b/templates/personindex.html @@ -5,19 +5,19 @@ {% block content %} -<h2>Notable expoers</h2> +<h2>Notably Recent Expoers</h2> <table class="searchable"> -<tr><th>Person</th><th>First</th><th>Last</th><th>Notability</th></tr> +<tr><th>Person</th><th>First</th><th>Last</th><th>Recency</th></tr> {% for person in notablepersons|dictsortreversed:"notability" %} <tr> <td><a href="{{ person.get_absolute_url }}">{{person|wiki_to_html_short}}</a></td> <td><a href="{{ person.first.get_absolute_url }}">{{ person.first.expedition.year }}</a></td> <td><a href="{{ person.last.get_absolute_url }}">{{ person.last.expedition.year }}</a></td> - <td>{{person.notability|floatformat:2}}</td> + <td style="text-align:right">{{person.notability|floatformat:2}}</td> </tr> {% endfor %} </table> -<p>This is based purely on attendance, not on activities, surveying or usefulness of any kind. But as Woody Allen said: "90% of success is just turning up". It should really be called "Notably recent expoers" as the metric is just a geometric "recency" (1/2 for attending last year, 1/3 for the year before, etc., added up. Display cuttoff is 1/3.). +<p>This is based purely on attendance, not on activities, surveying or usefulness of any kind. But as Woody Allen said: "90% of success is just turning up". This is mostly people who have been within the past three years, with an additional bias for number of attendances since 1976. The metric is just a geometric "recency" (1/2 for attending last year, 1/3 for the year before, etc., added up.) The display cuttoff is 1/3 so if you came just once, three years ago, you are on the list. <h2>All expoers</h2> @@ -33,7 +33,7 @@ <td><a href="{{ person.get_absolute_url }}">{{person|wiki_to_html_short}}</a></td> <td><a href="{{ person.first.get_absolute_url }}">{{person.first.expedition.year}}</a></td> <td><a href="{{ person.last.get_absolute_url }}">{{person.last.expedition.year}}</a></td> - <td></td> + <td style="text-align:right">{{person.surveyedleglength|stringformat:".0f"}} m </td> </tr> {% endfor %} </table> |