Commit ccb145c1 authored by Agu Syquia's avatar Agu Syquia

Created book_details.html

Template rendered by the BooksDetailsViews class
parent 1857940c
{% extends 'base.html' %}
{% load static%}
{% block title %}My Favorite Books{% endblock %}
{% block content %}
<h1>{{ object.title }}</h1>
<a href="/authors/{{ object.author.pk }}/details">{{ object.author}}</a>
<br>
{{ object.publisher }}<br>
{{ object.year_published }}<br>
{{ object.ISBN }}<br>
{{ object.blurb }}<br>
<a href="/home">Home</a> <a href="/books">Books</a> <a href="/authors">Authors</a>
{% 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