1
0
Fork 0
forked from matteo/serves3

Enable proper escaping of URL

This commit is contained in:
Matteo Settenvini 2023-07-12 15:42:14 +02:00
parent 6cc5bd3575
commit 3ebb73959b

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>