summaryrefslogtreecommitdiffstats
path: root/templates/personindex.html
blob: 1f21b2be7b2e51e0df3e53f1fc8d190ffb2754ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% extends "base.html" %}
{% load wiki_markup %}

{% block title %}Person Index{% endblock %}

{% block content %}

<h2>Notable expoers</h2>
<table class="searchable">
<tr><th>Person</th><th>First</th><th>Last</th><th>Notability</th></tr>
{% for person in notablepersons %}
<tr>
  <td><a href="{{ person.get_absolute_url }}">{{person|wiki_to_html_short}}</a></td>
  <td><a href="{{ person.first.get_absolute_url }}">{{ person.first.expedition.year }}</a></td> 
  <td><a href="{{ person.last.get_absolute_url }}">{{ person.last.expedition.year }}</a></td> 
  <td>{{person.notability}}</td>
</tr>
{% endfor %}
</table>


<h2>All expoers</h2>
<table class="searchable">
<tr>
{% for persons in personss %}
<td>

<table>
<tr><th>Person</th><th>First</th><th>Last</th><th>Surveyed length</th></tr>
{% for person in persons %}
<tr>
  <td><a href="{{ person.get_absolute_url }}">{{person|wiki_to_html_short}}</a></td>
  <td><a href="{{ person.first.get_absolute_url }}">{{person.first.expedition.year}}</a></td> 
  <td><a href="{{ person.last.get_absolute_url }}">{{person.last.expedition.year}}</a></td>
  <td></td>
</tr>
{% endfor %}
</table>
</td>
{% endfor %}
</tr>
</table>

{% endblock %}