File indexing completed on 2024-12-22 03:46:48

0001 
0002 {% extends "base.html" %}
0003 
0004 {% block style %}
0005 table {
0006   color: #151B54;
0007 }
0008 
0009 table tr th {
0010   color: white;
0011   background: #736F6E;
0012 }
0013 
0014 {% endblock %}
0015 
0016 {% block document_title %}{{ block.super }} - Coloured style{% endblock %}
0017 {% block page_title %}{{ block.super }} - Coloured style{% endblock %}
0018 
0019 {% block title_row %}<tr><th>Title</th><th>Genre</th><th>Rating</th></tr>{% endblock %}
0020 {% block book_rows %}
0021   {% for book in books %}
0022     {% ifchanged %}<tr><td colspan="3" align="center" style="background:yellow;" >{{ book.author }}</td>{% endifchanged %}
0023     <tr style="background-color:{% cycle "#E3E4FA" "#FCDFFF" "#E9CFEC" "#C8BBBE" %};" ><td>{{ book.title }}</td><td>{{ book.genre }}</td><td>{% range book.rating %}<img src="{% media_finder "star.png" %}" />{% endrange %}</td></tr>
0024   {% empty %}
0025     <tr><td><div>No Books here!</div></td></tr>
0026   {% endfor %}
0027 {% endblock %}