summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tbc/templates/tbc/books-fill-details.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/tbc/templates/tbc/books-fill-details.html b/tbc/templates/tbc/books-fill-details.html
new file mode 100644
index 0000000..03f38da
--- /dev/null
+++ b/tbc/templates/tbc/books-fill-details.html
@@ -0,0 +1,37 @@
+{% extends 'base.html' %}
+{% load static %}
+{% block content %}
+{% if bookfill %}
+<center>
+ <div class="alert" style="width:230px;height:23px;">
+ <a class="close" data-dismiss="alert" href="#">&times;</a>
+ <p>Book has been approved !</p>
+ </div>
+ </center>
+{% endif %}
+<div class="row-fluid">
+ <div class="span6">
+ <u> Books without details </u>
+ <ol>
+ {% for book in auto %}
+ <li><a href="{% url 'tbc:edit_books_fill_details' book.id %}"> {{ book.title }} </a> </li>
+ {% endfor %}
+ </ol>
+ <br \>
+ <!-- <u> Books with log available, so can be automated </u>
+ <ol>
+ {% for book in auto %}
+ <li><a href="{% url 'tbc:edit_books_fill_details' book.id %}"> {{ book.title }} </a> </li>
+ {% endfor %}
+ </ol>-->
+ </div>
+ <div class="span6">
+ <u> Books with details </u>
+ <ol>
+ {% for book in books_complete %}
+ <li><a href="{% url 'tbc:edit_books_fill_details' book.id %}"> {{ book.title }} </a></li>
+ {% endfor %}
+ </ol>
+ </div>
+</div>
+{% endblock %}