use urlencode_strict
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
This commit is contained in:
parent
70acfb1230
commit
191e5b66c3
3 changed files with 6 additions and 6 deletions
|
@ -1,12 +1,12 @@
|
||||||
{% extends "base" %}
|
{% extends "base" %}
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% if has_previous %}
|
{% if has_previous %}
|
||||||
<a class="secondary" href="/authors/{{ backward_cursor | urlencode }}/DESC">← back</a>
|
<a class="secondary" href="/authors/{{ backward_cursor | urlencode_strict }}/DESC">← back</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if has_previous and has_more %}|{% endif%}
|
{% if has_previous and has_more %}|{% endif%}
|
||||||
|
|
||||||
{% if has_more %}
|
{% if has_more %}
|
||||||
<a class="secondary" href="/authors/{{ forward_cursor | urlencode }}/ASC">more →</a>
|
<a class="secondary" href="/authors/{{ forward_cursor | urlencode_strict }}/ASC">more →</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{% extends "base" %}
|
{% extends "base" %}
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% if has_previous %}
|
{% if has_previous %}
|
||||||
<a class="secondary" href="/books/{{ backward_cursor | urlencode }}/DESC">← back</a>
|
<a class="secondary" href="/books/{{ backward_cursor | urlencode_strict }}/DESC">← back</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if has_previous and has_more %}|{% endif%}
|
{% if has_previous and has_more %}|{% endif%}
|
||||||
|
|
||||||
{% if has_more %}
|
{% if has_more %}
|
||||||
<a class="secondary" href="/books/{{ forward_cursor | urlencode }}/ASC">more →</a>
|
<a class="secondary" href="/books/{{ forward_cursor | urlencode_strict }}/ASC">more →</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{% extends "base" %}
|
{% extends "base" %}
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% if has_previous %}
|
{% if has_previous %}
|
||||||
<a class="secondary" href="/series/{{ backward_cursor | urlencode }}/DESC">← back</a>
|
<a class="secondary" href="/series/{{ backward_cursor | urlencode_strict }}/DESC">← back</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if has_previous and has_more %}|{% endif%}
|
{% if has_previous and has_more %}|{% endif%}
|
||||||
|
|
||||||
{% if has_more %}
|
{% if has_more %}
|
||||||
<a class="secondary" href="/series/{{ forward_cursor | urlencode }}/ASC">more →</a>
|
<a class="secondary" href="/series/{{ forward_cursor | urlencode_strict }}/ASC">more →</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue