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.
2011-03-05 22:06:42 +01:00
|
|
|
{% extends "base/main.html" %}
|
2011-03-05 21:30:03 +01:00
|
|
|
|
2011-03-05 22:06:42 +01:00
|
|
|
{% block title%}
|
2011-03-06 19:52:12 +01:00
|
|
|
{{ person.first_name }} {{ person.last_name }}
|
2011-03-05 22:06:42 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2011-03-06 18:14:25 +01:00
|
|
|
<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>
|
2011-03-05 21:30:03 +01:00
|
|
|
{% endfor %}
|
2011-03-05 22:06:42 +01:00
|
|
|
{% endblock %}
|