diff options
Diffstat (limited to 'tbc')
-rwxr-xr-x | tbc/templates/base.html | 2 | ||||
-rw-r--r-- | tbc/templates/tbc/submit-book.html | 2 |
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 %} |