{% extends "base.html" %} {% block title %}Aliases for people's names - for debugging {% endblock %} {% block content %}

Aliases for people's names in {{year}}

{% for pe in personexpeditions %} {% endfor %}
Personslugaliases
{{pe.person}} {{pe.slugfield}} {{pe.slugfield}}
{% for key, value in aliasdict.items %} {% endfor %}
aliaswho
'{{key}}' {{value}}
{% for key, value in invert.items %} {% endfor %}
whoaliases
{{key}} {{value}}

The aliases below are specified in the folk.csv file. Only one alias is possible in that format. {% for p in persons %} {% endfor %}
FirstLastFull nameNicknameexpo firstexpo last
{{p.first_name}} {{p.last_name}} {{p.fullname}} {{p.nickname}} {{p.first.expedition}} {{p.last.expedition}}
{% endblock %}