mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-12-22 05:04:27 +00:00
Fix pagination for internal profile pages
This commit is contained in:
parent
337258ddec
commit
73e3562320
1 changed files with 2 additions and 2 deletions
|
@ -401,10 +401,10 @@
|
||||||
{% macro display_pagination(older_than, newer_than) -%}
|
{% macro display_pagination(older_than, newer_than) -%}
|
||||||
<div class="clear">
|
<div class="clear">
|
||||||
{% if older_than %}
|
{% if older_than %}
|
||||||
<a href="{{ config.BASE_URL }}{{ request.path }}?older_than={{older_than}}{% if request.args.get('limit') %}&limit={{request.args.get('limit')}}{% endif %}" rel="next" class="older-link lcolor"><span class="pcolor">🡨</span> Older</a>
|
<a href="{{ config.BASE_URL }}{{ request.path }}?older_than={{older_than}}{% if request.args.get('limit') %}&limit={{request.args.get('limit')}}{% endif %}{% if request.args.get('actor_id') %}&actor_id={{request.args.get('actor_id')}}{% endif %}" rel="next" class="older-link lcolor"><span class="pcolor">🡨</span> Older</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if newer_than %}
|
{% if newer_than %}
|
||||||
<a href="{{ config.BASE_URL }}{{ request.path }}?newer_than={{newer_than}}{% if request.args.get('limit') %}&limit={{request.args.get('limit')}}{% endif %}" rel="prev" class="newer-link lcolor">Newer <span class="pcolor">🡪</span></a>
|
<a href="{{ config.BASE_URL }}{{ request.path }}?newer_than={{newer_than}}{% if request.args.get('limit') %}&limit={{request.args.get('limit')}}{% endif %}{% if request.args.get('actor_id') %}&actor_id={{request.args.get('actor_id')}}{% endif %}" rel="prev" class="newer-link lcolor">Newer <span class="pcolor">🡪</span></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endmacro -%}
|
{% endmacro -%}
|
||||||
|
|
Loading…
Reference in a new issue