Commit b3b20a80 authored by Ysabella Panghulan's avatar Ysabella Panghulan

created book details template

parent 12bfccc8
{%extends 'base.html'%}
{% block title %} {{ object.title }} {% endblock %}
{% block header %}
<h2> {{ object.title }} </h2>
{% endblock %}
{% block body %}
<div class="books-content">
{% block content %}
<h3> {{ object.author }} </h3>
<h3> {{ object.publisher }} </h3>
<h3> {{ object.ISBN }} </h3>
<p> {{ object.blurb }} </p>
<div class="links">
<ul>
<li><a href="/books">Books</a></li>
<li><a href="/authors">Authors</a></li>
</ul>
</div>
{% endblock %}
</div>
{% endblock %}
\ No newline at end of file
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