2008-10-27 00:36:06 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
|
|
|
{% block title %}Person Index{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2009-01-18 15:59:37 +00:00
|
|
|
|
2009-01-29 23:40:56 +00:00
|
|
|
<h2>Notable expoers</h2>
|
|
|
|
<table>
|
|
|
|
<tr><th>Person</th><th>First</th><th>Last</th><th>Notability</th></tr>
|
|
|
|
{% for person in notablepersons %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{% url person person.href%}">{{person|wiki_to_html_short}}</a></td>
|
|
|
|
<td><a href="{% url personexpedition person.href person.Firstexpedition.expedition.year %}">{{person.Firstexpedition.expedition.year}}</a></td>
|
|
|
|
<td><a href="{% url personexpedition person.href person.Lastexpedition.expedition.year %}">{{person.Lastexpedition.expedition.year}}</a></td>
|
|
|
|
<td>{{person.notability}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<h2>All expoers</h2>
|
2009-01-24 18:26:49 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
{% for persons in personss %}
|
|
|
|
<td>
|
|
|
|
<table>
|
|
|
|
<tr><th>Person</th><th>First</th><th>Last</th></tr>
|
2008-10-27 00:36:06 +00:00
|
|
|
{% for person in persons %}
|
2009-01-24 18:26:49 +00:00
|
|
|
<tr>
|
|
|
|
<td><a href="{% url person person.href%}">{{person|wiki_to_html_short}}</a></td>
|
|
|
|
<td><a href="{% url personexpedition person.href person.Firstexpedition.expedition.year %}">{{person.Firstexpedition.expedition.year}}</a></td>
|
|
|
|
<td><a href="{% url personexpedition person.href person.Lastexpedition.expedition.year %}">{{person.Lastexpedition.expedition.year}}</a></td>
|
|
|
|
</tr>
|
2009-01-18 15:59:37 +00:00
|
|
|
{% endfor %}
|
2009-01-24 18:26:49 +00:00
|
|
|
</table>
|
|
|
|
</td>
|
2008-10-27 00:36:06 +00:00
|
|
|
{% endfor %}
|
2009-01-24 18:26:49 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2009-01-18 15:59:37 +00:00
|
|
|
|
2008-10-27 00:36:06 +00:00
|
|
|
{% endblock %}
|