From 0019ab9bb7e75fbc67c5df2c3d8e61b4dd6fe36f Mon Sep 17 00:00:00 2001 From: Trupti Rajesh Kini Date: Tue, 11 Jul 2017 14:21:11 +0530 Subject: Create books-fill-details.html --- tbc/templates/tbc/books-fill-details.html | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 tbc/templates/tbc/books-fill-details.html 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 %} +
+
+ × +

Book has been approved !

+
+
+{% endif %} +
+
+ Books without details +
    + {% for book in auto %} +
  1. {{ book.title }}
  2. + {% endfor %} +
+
+ +
+
+ Books with details +
    + {% for book in books_complete %} +
  1. {{ book.title }}
  2. + {% endfor %} +
+
+
+{% endblock %} -- cgit