summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhardythe12013-12-15 03:09:41 +0530
committerhardythe12013-12-15 03:09:41 +0530
commit0e47eb3805386e3c95ddb2ee71d4440f57a5b8e7 (patch)
treed659fe13aa0b0770c3a186499419efb30a8c4a80
parent6d5aa1c7d28abac315d0a443be683f4f8b0132e7 (diff)
downloadPython-TBC-Interface-0e47eb3805386e3c95ddb2ee71d4440f57a5b8e7.tar.gz
Python-TBC-Interface-0e47eb3805386e3c95ddb2ee71d4440f57a5b8e7.tar.bz2
Python-TBC-Interface-0e47eb3805386e3c95ddb2ee71d4440f57a5b8e7.zip
minor design changes
-rwxr-xr-xtbc/templates/base.html2
-rw-r--r--tbc/templates/tbc/submit-book.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/tbc/templates/base.html b/tbc/templates/base.html
index b96da6b..00df0ac 100755
--- a/tbc/templates/base.html
+++ b/tbc/templates/base.html
@@ -141,7 +141,7 @@
{% endif %}
<div class="row-fluid">
- <center><h3>Latest Books</h3></center>
+ <center><h3>Recent Submissions</h3></center>
{% for item in items %}
<div class ="module-list">
<a href="{% url 'tbc:BookDetails' item.book.id %}"><img src="{% static 'uploads/' %}{{ item.image.image }}"></a>
diff --git a/tbc/templates/tbc/submit-book.html b/tbc/templates/tbc/submit-book.html
index e4d1579..72e76ba 100644
--- a/tbc/templates/tbc/submit-book.html
+++ b/tbc/templates/tbc/submit-book.html
@@ -5,7 +5,7 @@
{% csrf_token %}
{{ form.as_p }}
<br>
- <input type=submit value=submit>
+ <input class="btn btn-primary" type=submit value=submit>
</form>
</div>
{% endblock %}