Updated a lot of stuff
This commit is contained in:
9
templates/pagination.html
Normal file
9
templates/pagination.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<div id="pagination">
|
||||
{% if quotes.has_prev %}
|
||||
<a href="{{ url_for('browse', page=quotes.prev_num) }}">« Previous</a>
|
||||
{% endif %}
|
||||
Page {{ quotes.page }} of {{ quotes.pages }}
|
||||
{% if quotes.has_next %}
|
||||
<a href="{{ url_for('browse', page=quotes.next_num) }}">Next »</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user