summaryrefslogtreecommitdiffstats
path: root/templates/person.html
blob: 88171c145a02b7d26226c7c3e3a2f8eb30db5ced (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
{% extends "base.html" %}
{% load wiki_markup %}

{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}

{% block contentheader %}
<h2> {{person|wiki_to_html_short}} </h2>
{% endblock %}

{% block content %}
{{person.blurb}}
{% for pic in person.photo_set
    <div class="figure">
      <p> <img src="{{ person.correctURL }}" class="thumbnail" /> </p>
    </div>
    
<p>{{person|wiki_to_html_short}} has been on expo in the following years:</p>
<p>
{% for personexpedition in person.personexpedition_set.all %}
  | <a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.expedition.year}}</a>
{% endfor %}
</p>


{% endblock %}