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

16 lines
527 B
HTML

{% extends "base/main.html" %}
{%block title%}
Worblehat 0.1: {{ book.title }}
{% endblock %}
{% block content %}
<span class="key">Title:</span> {{ book.title }} <br>
{% if book.subtitle %}
<span class="key">Subtitle:</span> {{ book.subtitle }} <br>
{% endif %}
<span class="key">ISBN:</span> {{ book.isbn }} <br>
{% for person in people %}
<span class="key">{{ person.relation }}:</span> <a href=/person/{{person.person.id}}>{{ person.person.first_name }} {{ person.person.last_name }}</a> <br>
{% endfor %}
{% endblock %}