diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-07-20 18:41:30 +0200 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-07-20 18:41:30 +0200 |
commit | bca1123d4d544a7047584cb6ec3d41b06e18b61d (patch) | |
tree | 189e0711543a27855531ea94717245c6bbcf051b /templates/expedition.html | |
parent | 83e22f828c8645b1ef05e8ba43550bd5c29acc5d (diff) | |
download | troggle-bca1123d4d544a7047584cb6ec3d41b06e18b61d.tar.gz troggle-bca1123d4d544a7047584cb6ec3d41b06e18b61d.tar.bz2 troggle-bca1123d4d544a7047584cb6ec3d41b06e18b61d.zip |
mugshots on the expo calendar page
Diffstat (limited to 'templates/expedition.html')
-rw-r--r-- | templates/expedition.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/expedition.html b/templates/expedition.html index 33dcf91..d874053 100644 --- a/templates/expedition.html +++ b/templates/expedition.html @@ -37,7 +37,7 @@ an "<b>S</b>" for a survey trip. The colours of the "<b>T</b>" and "<b>S</b>" a <table class="expeditionpersonlist"> <tr> -<th>Caver</th> +<th>Caver</th><th width=7> </th> {% for d in dates %} <th> {{d.day}}/{{d.month}} @@ -47,6 +47,9 @@ an "<b>S</b>" for a survey trip. The colours of the "<b>T</b>" and "<b>S</b>" a {% for personexpoday in personexpodays|dictsort:"sortname" %} <tr> <td><a href="{{ personexpoday.personexpedition.get_absolute_url }}">{{personexpoday.personexpedition.person.fullname|safe}}</a></td> + +<td>{% if personexpoday.personexpedition.person.mug_shot %} +<div align=right><a href="{{personexpoday.personexpedition.person.mug_shot}}">😃</a></div>{% endif %}</td> {% for activities in personexpoday.personrow %} {% if activities.personentries or activities.survexblocks %} |