Advertisement
Guest User

Untitled

a guest
Jul 29th, 2018
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 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.  
  23.                {% for book_type in book_types %}
  24.                     <ul>
  25.                             <h6><a href="#">{{ book_type }}</a></h6>
  26.                     </ul>
  27.                 {% endfor %}
  28.  
  29.  
  30.             </div>
  31.         </div>
  32. </div>
  33. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement