add missing url-encoding of base_url in terminal/edit templates

This was fixed in the notebook and tree views,
but overlooked in edit, terminal
This commit is contained in:
Min RK 2016-03-08 20:58:06 +01:00
parent 3f83ff525b
commit 8c038e3ddb
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
{% block bodyclasses %}edit_app {{super()}}{% endblock %}
{% block params %}
data-base-url="{{base_url}}"
data-base-url="{{base_url | urlencode}}"
data-file-path="{{file_path}}"
{{super()}}
{% endblock %}

View File

@ -6,7 +6,7 @@
{% block params %}
data-base-url="{{base_url}}"
data-base-url="{{base_url | urlencode}}"
data-ws-path="{{ws_path}}"
{% endblock %}