2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
{% load wiki_markup %}
{% block title %}Person Index{% endblock %}
{% block content %}
< h2 > Notable expoers< / h2 >
< table class = "searchable" >
< tr > < th > Person< / th > < th > First< / th > < th > Last< / th > < th > Notability< / th > < / tr >
2019-04-02 02:04:38 +01:00
{% for person in notablepersons|dictsortreversed:"notability" %}
2011-07-11 02:10:22 +01:00
< 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 >
2019-04-02 02:04:38 +01:00
< td > {{person.notability|floatformat:2}}< / td >
2011-07-11 02:10:22 +01:00
< / tr >
{% endfor %}
< / table >
2020-02-24 21:49:01 +00:00
< 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.).
2011-07-11 02:10:22 +01:00
< h2 > All expoers< / h2 >
< table class = "searchable" >
< tr >
{% for persons in personss %}
< td >
< table >
< tr > < th > Person< / th > < th > First< / th > < th > Last< / th > < th > Surveyed length< / th > < / tr >
{% for person in persons %}
< 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 >
2019-03-09 18:21:10 +00:00
< td > < a href = "{{ person.last.get_absolute_url }}" > {{person.last.expedition.year}}< / a > < / td >
< td > < / td >
2011-07-11 02:10:22 +01:00
< / tr >
{% endfor %}
< / table >
< / td >
{% endfor %}
< / tr >
< / table >
{% endblock %}