Enable proper escaping of URL
This commit is contained in:
parent
6cc5bd3575
commit
3ebb73959b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue