{% extends "base.html" %}
{% block title %}Aliases for people's names - for debugging {% endblock %}
{% block content %}
Aliases for people's names in {{year}}
Person | slug | aliases |
{% for pe in personexpeditions %}
{{pe.person}} |
{{pe.slugfield}} |
{{pe.slugfield}} |
{% endfor %}
alias | who |
{% for key, value in aliasdict.items %}
'{{key}}' |
{{value}} |
{% endfor %}
who | aliases |
{% for key, value in invert.items %}
{{key}} |
{{value}} |
{% endfor %}
The aliases below are specified in the folk.csv file. Only one alias is possible in that format.
First | Last | Full name | Nickname | expo first | expo last |
{% for p in persons %}
{{p.first_name}} |
{{p.last_name}} |
{{p.fullname}} |
{{p.nickname}} |
{{p.first.expedition}} |
{{p.last.expedition}} |
{% endfor %}
{% endblock %}