From 62e2764c82f4d6f69fe87caf8002e611ad0edcc5 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 8 Mar 2019 16:46:02 +0100 Subject: Sheet: fix url display with ' --- ishtar_common/templates/ishtar/blocks/window_field_flex_url.html | 2 +- ishtar_common/templates/ishtar/blocks/window_field_url.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html b/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html index 4f23ff74b..9b3799baf 100644 --- a/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html +++ b/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html @@ -2,7 +2,7 @@
{% trans caption %}
- {% if link_name %}{{link_name}}{% else %}{{link}}{% endif %} + {% if link_name %}{{link_name}}{% else %}{{link}}{% endif %}
{% endif%} diff --git a/ishtar_common/templates/ishtar/blocks/window_field_url.html b/ishtar_common/templates/ishtar/blocks/window_field_url.html index cd6365106..f83aae5ad 100644 --- a/ishtar_common/templates/ishtar/blocks/window_field_url.html +++ b/ishtar_common/templates/ishtar/blocks/window_field_url.html @@ -1,3 +1,3 @@ {% load i18n %}{% if link %}{% if li %}
  • {% else %}

    {% endif %}

    -{% if link_name %}{{link_name}}{% else %}{{link}}{% endif %}{% if li %}

  • {% else %}

    {% endif %} +{% if link_name %}{{link_name}}{% else %}{{link}}{% endif %}{% if li %}{% else %}

    {% endif %} {% endif%} -- cgit v1.2.3