Commit 9f1e9b2c authored by Jan Enzo Salvador's avatar Jan Enzo Salvador

Provided incomplete details and fixed the syntax errors

parent 292c7d88
......@@ -5,16 +5,16 @@
<h1>{{ object.first_name }} {{ object.last_name }}</h1>
<body>
<a href="{{ object.get_absolute_url }}">
{{ object.first_name }} {{ object.last_name }}<br>
</a>
{{ object.age }}<br>
{{ object.nationality }}<br>
{{ object.bio }}<br><br>
Books by {{ object.first_name }} {{ object.last_name }} I love:
{% endfor %}
Books by {{ object.first_name }} {{ object.last_name }} I love: <br>
{% for object in author.books_set.all %}
<li>
<a href="{{ object.get_absolute_url }}">{{ object.title }}</a>
</li>
{% endfor %}
</body>
<footer>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment