diff options
-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 %} |