diff options
author | hardythe1 | 2014-06-15 12:42:30 +0530 |
---|---|---|
committer | hardythe1 | 2014-06-15 12:42:30 +0530 |
commit | 3c2d793c7c5d26b91e29312b42e1b2869e244d32 (patch) | |
tree | ac0063a639f166df8d0aa997422e15f5667d7268 /tbc/templates/base.html | |
parent | 8ce7163b095edb6730603655dea1f21a614de98a (diff) | |
download | Python-TBC-Interface-3c2d793c7c5d26b91e29312b42e1b2869e244d32.tar.gz Python-TBC-Interface-3c2d793c7c5d26b91e29312b42e1b2869e244d32.tar.bz2 Python-TBC-Interface-3c2d793c7c5d26b91e29312b42e1b2869e244d32.zip |
changes to make the books completed & books under progress links work
Diffstat (limited to 'tbc/templates/base.html')
-rwxr-xr-x | tbc/templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tbc/templates/base.html b/tbc/templates/base.html index f6bb66a..30be78f 100755 --- a/tbc/templates/base.html +++ b/tbc/templates/base.html @@ -91,8 +91,8 @@ <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Textbooks<b class="caret"></b></a> <ul class="dropdown-menu"> - <li><a href="{% static 'templates/converted_textbooks.html' %}">Completed</a></li> - <li><a href="{% static 'templates/books_under_progess.html' %}">Under Progress</a></li> + <li><a href="{% url 'tbc:CompletedBooks' %}">Completed</a></li> + <li><a href="{% url 'tbc:BooksUnderProgress' %}">Under Progress</a></li> </ul> </li> <li><a href="{% url 'tbc:InternshipForms' %}">Internship Forms</a></li> |