Skip to content

Commit b41808b

Browse files
committed
Merge pull request #2691 from mochawich/patch-1
fixed missing anchor closing tag
2 parents cc64e30 + 2266fec commit b41808b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_framework/templates/rest_framework/pagination/previous_and_next.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
{% if next_url %}
88
<li class="next"><a href="{{ next_url }}">Next &raquo;</a></li>
99
{% else %}
10-
<li class="next disabled"><a href="#">Next &raquo;</li>
10+
<li class="next disabled"><a href="#">Next &raquo;</a></li>
1111
{% endif %}
1212
</ul>

0 commit comments

Comments
 (0)