File indexing completed on 2025-02-09 04:28:26

0001 
0002 {% extends "base.html" %}
0003 
0004 {% block document_title %}{{ block.super }} - Simple2 style{% endblock %}
0005 {% block page_title %}{{ block.super }} - Simple2 style{% endblock %}
0006 
0007 {% block title_row %}<tr><th>Title</th><th>Genre</th><th>Rating</th></tr>{% endblock %}
0008 {% block book_rows %}
0009   {% for book in books %}
0010     {% ifchanged %}<tr><td colspan="3" align="center" style="background:yellow;" >{{ book.author }}</td></tr>{% endifchanged %}
0011     <tr><td>{{ book.title }}</td><td>{{ book.genre }}</td><td>{% range book.rating %}<img src="{% media_finder "star.png" %}" />{% endrange %}</td></tr>
0012   {% empty %}
0013     <tr><td><div>No Books here!</div></td></tr>
0014   {% endfor %}
0015 {% endblock %}