Advertisement
Guest User

Untitled

a guest
Jul 29th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.75 KB | None | 0 0
  1. {% extends 'base.html' %}
  2. {% load static %}
  3.  
  4. {% block custom %}
  5.     <link rel='stylesheet' type="text/css" href="{% static 'css/background_color_styles.css' %}">
  6. {% endblock %}
  7.  
  8.  
  9. {% block title %}
  10.  
  11. <title>Book Types List | Private Library</title>
  12.  
  13. {% endblock %}
  14.  
  15. {% block content %}
  16. <div class="container">
  17.  
  18.         <div class="col">
  19.             <div id="background-color-content">
  20.                 <h3>Book Types</h3>
  21.                 <hr>
  22.             <ul>
  23.                 {% for book_type in book_types %}
  24.                     <li><a href="{% url 'book_types_list:book_types_detail' book_type.id %}">{{ book_type.1 }}</a></li>
  25.                  {% endfor %}
  26.             </ul>
  27.             </div>
  28.         </div>
  29. </div>
  30.  
  31.  
  32. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement