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

13 lines
397 B
HTML
Raw Normal View History

{% extends "base/main.html" %}
2011-03-05 21:30:03 +01:00
{% block title%}
Worblehat 0.1: {{ person.first_name }} {{ person.last_name }}
{% endblock %}
{% block content %}
<span class="key">Name:</span> {{person.first_name}} {{person.last_name}}<br>
2011-03-05 21:30:03 +01:00
{% for book in books %}
<span class="key">{{ book.relation.name }} of:</span> <a href=/book/{{ book.book.isbn }}>{{ book.book.title }}</a> <br>
2011-03-05 21:30:03 +01:00
{% endfor %}
{% endblock %}