summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrupti Rajesh Kini2017-07-11 14:22:36 +0530
committerGitHub2017-07-11 14:22:36 +0530
commitf9a40fb494bac15d96827493328930419a8ed341 (patch)
tree6f5f994d1ebc34619f69cd8b8e4b498a1e22f4b4
parent6255c5050f3e414ecee8fc63cf8ee61c66b94180 (diff)
downloadPython-TBC-Interface-f9a40fb494bac15d96827493328930419a8ed341.tar.gz
Python-TBC-Interface-f9a40fb494bac15d96827493328930419a8ed341.tar.bz2
Python-TBC-Interface-f9a40fb494bac15d96827493328930419a8ed341.zip
Create edit-books-fill-details.html
-rw-r--r--tbc/templates/tbc/edit-books-fill-details.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/tbc/templates/tbc/edit-books-fill-details.html b/tbc/templates/tbc/edit-books-fill-details.html
new file mode 100644
index 0000000..892ce16
--- /dev/null
+++ b/tbc/templates/tbc/edit-books-fill-details.html
@@ -0,0 +1,18 @@
+{% extends 'base.html' %}
+{% load static %}
+{% block script %}
+<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
+<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
+<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
+
+{% endblock %}
+{% block content %}
+<div class="well">
+ <center><a href="{% url 'tbc:books_fill_details' %}" class="btn btn-primary"> BACK </a></center>
+ <form action="{% url 'tbc:edit_books_fill_details' book.id %}" method="POST">
+ {% csrf_token %}
+ {{ form.as_p }}
+ <center><input class="btn btn-primary" type="submit" value="SAVE"></center>
+ </form>
+</div>
+{% endblock %}