{% extends "base.html" %} {% load wiki_markup %} {% block title %}Person {{personexpedition.person|wiki_to_html_short}} for {{personexpedition.expedition}}{% endblock %} {% block content %}

{{personexpedition.person}}: {{personexpedition.expedition}} ({{personexpedition.date_from}} - {{personexpedition.date_to}})

{{message}}

Needs links fore and back through expeditions attended by this person (or as a complete barchart type list with one date in bold)

Needs lists below to be sorted by date, and the duplicates removed from survey role list

Finally, a correspondence between these two columns

{% for personrole in personexpedition.personrole_set.all %} {% endfor %}
DatePlaceRole
{{personrole.survex_block.date}} {{personrole.survex_block.survexpath}} {{personrole.role}}
{% for persontrip in personexpedition.persontrip_set.all %} {% endfor %}
DateTitlePlace
{{persontrip.date}} {{persontrip.logbook_entry.title|safe}} {{persontrip.place}}
{% endblock %}