forked from expo/troggle
25b695e53d
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8245 by aaron @ 2/17/2009 1:09 AM
26 lines
681 B
HTML
26 lines
681 B
HTML
{% 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 %}
|