aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2015-03-13 16:14:12 +0000
committerTom Christie2015-03-13 16:14:12 +0000
commitb41808b79adb6f51d55c580012b66d420edaed4a (patch)
treea3dbeabf8b3a270be9c5854b2dd4a08ee4d4700e
parentcc64e30f55b04469f0eb93d0c1a7a687e9bb8c82 (diff)
parent2266fec99dd10984e31ac4b50b9d6fed1355565b (diff)
downloaddjango-rest-framework-b41808b79adb6f51d55c580012b66d420edaed4a.tar.bz2
Merge pull request #2691 from mochawich/patch-1
fixed missing anchor closing tag
-rw-r--r--rest_framework/templates/rest_framework/pagination/previous_and_next.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/templates/rest_framework/pagination/previous_and_next.html b/rest_framework/templates/rest_framework/pagination/previous_and_next.html
index eacbfff4..08c17709 100644
--- a/rest_framework/templates/rest_framework/pagination/previous_and_next.html
+++ b/rest_framework/templates/rest_framework/pagination/previous_and_next.html
@@ -7,6 +7,6 @@
{% if next_url %}
<li class="next"><a href="{{ next_url }}">Next &raquo;</a></li>
{% else %}
- <li class="next disabled"><a href="#">Next &raquo;</li>
+ <li class="next disabled"><a href="#">Next &raquo;</a></li>
{% endif %}
</ul>