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/book/view.html

17 lines
431 B
HTML
Raw Normal View History

{% extends "base/main.html" %}
{%block title%}
Worblehat 0.1: {{ book.title }}
{% endblock %}
{% block content %}
2011-03-05 21:30:03 +01:00
Title: {{ book.title }} <br>
{% if book.subtitle %}
Subtitle: {{ book.subtitle }} <br>
{% endif %}
ISBN: {{ book.isbn }} <br>
{% for person in people %}
{{ person.relation }} : <a href=/person/{{person.person.id}}>{{ person.person.first_name }} {{ person.person.last_name }}</a> <br>
{% endfor %}
{% endblock %}