forked from matteo/serves3
Enable proper escaping of URL
This commit is contained in:
parent
6cc5bd3575
commit
3ebb73959b
|
@ -13,7 +13,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% for object in objects %}
|
{% for object in objects %}
|
||||||
<li><a href="{{ object }}">{{ object }}</a></li>
|
<li><a href="{{ object | urlencode }}">{{ object }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue