Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
worblehat-old/python/web/templates/person/view.html

19 lines
434 B
HTML

{% extends "base/main.html" %}
{% block title%}
{{ person.first_name }} {{ person.last_name }}
{% endblock %}
{% block content %}
<h2>{{ person.first_name }} {{ person.last_name }}</h2>
{% for relation, books in contributed.iteritems %}
<span class="key">{{ relation }}:</span><br/>
<ul>
{% for book in books.1 %}
<li> <a href=/bok/{{book.book.isbn}}>{{ book.book.title }}</a>
{% endfor %}
<br/>
</ul>
{% endfor %}
{% endblock %}