diff options
Diffstat (limited to 'templates/person.html')
-rw-r--r-- | templates/person.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/person.html b/templates/person.html index 48dafb7..5b0c7e9 100644 --- a/templates/person.html +++ b/templates/person.html @@ -18,8 +18,8 @@ {% if pic.is_mugshot %} <div class="figure"> <p> <img src="{{ pic.thumbnail_image.url }}" class="thumbnail" /> - <p> {{ pic.caption }}</p> - <p> <a href="{{ pic.get_admin_url }}">edit {{pic}}</a> </> + <p> {{ pic.caption }} </p> + <p> <a href="{{ pic.get_admin_url }}">edit {{pic}}</a> </p> </p> </div> @@ -32,7 +32,7 @@ <ul> {% for personexpedition in person.personexpedition_set.all %} <li> <a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.expedition.year}}</a> - <span style="padding-left:{{personexpedition.persontrip_set.all|length}}0px; background-color:red"></span> + <span style="padding-left:{{ personexpedition.persontrip_set.all|length }}0px; background-color:red"></span> {{personexpedition.persontrip_set.all|length}} trips </li> {% endfor %} |