diff options
Diffstat (limited to 'templates/person.html')
-rw-r--r-- | templates/person.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/templates/person.html b/templates/person.html index 8f8c820..88171c1 100644 --- a/templates/person.html +++ b/templates/person.html @@ -3,8 +3,17 @@ {% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
-{% block content %}
+{% 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 %}
|