diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-04-29 10:12:33 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-04-29 10:12:33 +0200 |
commit | e542299f3dd1aea96c183d5d504e37a62235a052 (patch) | |
tree | 88734437844f3a13bd0455b84cc7692b4c881ae4 /ishtar_common/templates | |
parent | e9587499cdd7190aa4d1c3722353490ea346469a (diff) | |
download | Ishtar-e542299f3dd1aea96c183d5d504e37a62235a052.tar.bz2 Ishtar-e542299f3dd1aea96c183d5d504e37a62235a052.zip |
Fix basket sheet after pin of a basket
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html b/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html index ff92b8af9..542866eb1 100644 --- a/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html +++ b/ishtar_common/templates/ishtar/blocks/window_tables/dynamic_documents.html @@ -44,10 +44,10 @@ <div class="btn-group btn-group-sm" role="group" aria-label="{% trans 'Export'%}"> {% if source_full %} - <a class="btn btn-secondary" href='{{simple_source}}csv{{ source_attrs|safe }}' target='_blank' title="{% trans 'Export as CSV' %}">{% trans "CSV" %}</a> - <a class="btn btn-secondary" href='{{source_full}}csv{{ source_attrs|safe }}' target='_blank' title="{% trans 'Export as CSV - full' %}">{% trans "CSV full" %}</a> + <a class="btn btn-secondary" href='{{simple_source|safe}}csv{{ source_attrs|safe }}' target='_blank' title="{% trans 'Export as CSV' %}">{% trans "CSV" %}</a> + <a class="btn btn-secondary" href='{{source_full|safe}}csv{{ source_attrs|safe }}' target='_blank' title="{% trans 'Export as CSV - full' %}">{% trans "CSV full" %}</a> {% else %} - <a class="btn btn-secondary" href="{{simple_source}}csv{{ source_attrs|safe }}" target="_blank" title="{% trans 'Export as CSV' %}">CSV</a> + <a class="btn btn-secondary" href="{{simple_source|safe}}csv{{ source_attrs|safe }}" target="_blank" title="{% trans 'Export as CSV' %}">CSV</a> {% endif %} </div> </div> @@ -62,7 +62,7 @@ setTimeout( function(){ datatable_options = { "ajax": { - "url": "{{source}}", + "url": "{{source|safe}}", "dataSrc": "rows" }, "columns": [ |