diff options
author | Trupti Rajesh Kini | 2017-07-11 14:22:54 +0530 |
---|---|---|
committer | GitHub | 2017-07-11 14:22:54 +0530 |
commit | 032a2ee67c10999dd994dd1da97f5739c2da0162 (patch) | |
tree | a7476094f08adea4f99831ab16b7e24ecad5581c | |
parent | 23463c7bae9ea0f193c1b5162fcde1776a307615 (diff) | |
parent | 0019ab9bb7e75fbc67c5df2c3d8e61b4dd6fe36f (diff) | |
download | Python-TBC-Interface-032a2ee67c10999dd994dd1da97f5739c2da0162.tar.gz Python-TBC-Interface-032a2ee67c10999dd994dd1da97f5739c2da0162.tar.bz2 Python-TBC-Interface-032a2ee67c10999dd994dd1da97f5739c2da0162.zip |
Merge pull request #49 from FOSSEE/kinitrupti-book-details-5
Create books-fill-details.html
-rw-r--r-- | tbc/templates/tbc/books-fill-details.html | 37 |
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="#">×</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 %} |