Commit 84482763 authored by Star Neptune R. Sy's avatar Star Neptune R. Sy

Everything works. Now onto styling

parent 32b47a92
<head> <head>
<link rel="stylesheet" href="formatt.css">
<title>{% block title %}{% endblock %}</title> <title>{% block title %}{% endblock %}</title>
</head> </head>
<body> <body>
......
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
</ul> </ul>
<div> <div>
<p> Books by {{object.first_name}} {{object.last_name}} I love </p> <p> Books by {{object.first_name}} {{object.last_name}} I love: </p>
<ul> <ul>
{% for book in object_set.all %} {% for aBook in object.book_set.all %}
<li> <a href="/book/{{book.get_absolute_url}}/details/"> {{book.title}} <li> <a href="/books/{{aBook.get_absolute_url}}/details/"> {{aBook.title}} </a></li>
{% endfor %} {% endfor %}
</ul> </ul>
<div> <div>
......
div.uh{
}
\ 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