Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.69 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>Rodzaj książki:</h3>
  21.                 <hr>
  22.                     {% for book_type in book_types %}
  23.                         {{ book_type }}
  24.                     {{book.book_choices }}
  25.                     {% endfor %}
  26.  
  27.  
  28.  
  29.             </div>
  30.         </div>
  31. </div>
  32. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement