You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
841 B
19 lines
841 B
{% if is_paginated %}
|
|
<div class="video-page">
|
|
<div class="ui circular labels">
|
|
{% if page_obj.has_previous %}
|
|
<a class="ui circular label" href="?page={{ page_obj.previous_page_number }}{% if c %}&c={{c}}{% endif %}{% if q %}&q={{q}}{% endif %}"><</a>
|
|
{% endif %}
|
|
{% for i in page_list %}
|
|
{% if page_obj.number == i %}
|
|
<a class="ui red circular label">{{ i }}</a>
|
|
{% else %}
|
|
<a class="ui circular label" href="?page={{ i }}{% if c %}&c={{c}}{% endif %}{% if q %}&q={{q}}{% endif %}">{{ i }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if page_obj.has_next %}
|
|
<a class="ui circular label" href="?page={{ page_obj.next_page_number }}{% if c %}&c={{c}}{% endif %}{% if q %}&q={{q}}{% endif %}">></a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %} |