Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. {% extends "base_generic.html" %}
  2.  
  3. {% block content %}
  4.   <h1>Book List</h1>
  5.   {% if book_list %}
  6.   <ul>
  7.     {% for book in book_list %}
  8.       <li>
  9.         <a href="{{ book.get_absolute_url }}">{{ book.title }}</a> ({{book.author}})
  10.       </li>
  11.     {% endfor %}
  12.   </ul>
  13.   {% else %}
  14.     <p>There are no books in the library.</p>
  15.   {% endif %}      
  16. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement