forked from matteo/serves3
1
0
Fork 0

Enable proper escaping of URL

This commit is contained in:
Matteo Settenvini 2023-07-12 15:42:14 +02:00
parent 6cc5bd3575
commit 3ebb73959b
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
{% endif %}
{% for object in objects %}
<li><a href="{{ object }}">{{ object }}</a></li>
<li><a href="{{ object | urlencode }}">{{ object }}</a></li>
{% endfor %}
</ul>
</body>