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

{{personexpedition.person|safe}} : {{personexpedition.expedition}}

{{message}}

{{personexpedition.surveyedleglength|stringformat:".1f"}} m surveyed this year.

Other years:  {% for otherpersonexpedition in personexpedition.person.personexpedition_set.all %} {% if otherpersonexpedition == personexpedition %} | {{otherpersonexpedition.expedition.year}} {% else %} | {{ otherpersonexpedition.expedition.year }} {% endif %} {% endfor %}

Wallet status {% for otherpersonexpedition in personexpedition.person.personexpedition_set.all %} | {{ otherpersonexpedition.expedition.year }} {% endfor %}

Table of all trips and surveys aligned by date

{% for persondate in personchronology %} {% if persondate.1 %} {% else %} {% endif %} {% if persondate.2 %} {%comment%} {%endcomment%} {% else %} {% endif %} {% endfor %}
DateTripsSurveys
{{persondate.0}}{{persondate.1.logbook_entry.title|safe}} {{persondate.1.logbook_entry.place|safe}} {{persondate.2.name}} {% for survexpersonrole in persondate.2.survexpersonrole_set.all %} {{survexpersonrole.nrole}} {% endfor %} {{persondate.2.legslength|stringformat:".1f"}} m

Horrible convoluted bug here, but only for some survex files. Mostly, a survex block is duplicated. But not always.

e.g. see Wookey 1999 where there are one eiscream survex block on 5th August in eiscream.svx
It duplicates it. Also on 4th Aug. there is only one block, but it gets shown twice.

The interaction of django database query idioms with django HTML templating language is a bit impenetrable here. I blame Aaron Curtis who was too fond of being clever with the Django templating system instead or writing it in python anyone could understand.
- The template is in troggle/templates/personexpedition.html
- The code is in function personexpedition() which calls get_person_chronology() in troggle/core/views/logbooks.py
- the connection between the two is made in the URL resolver in troggle/urls.py

To be fixed!

{% endblock %}