diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-01-04 12:39:02 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-01-11 17:30:46 +0100 |
commit | 4dd953b8327d684107b6485cef2fb69cd7663603 (patch) | |
tree | 43e0e2ea68f493c6df0c13f81170e55e78901b25 /ishtar_common/templates/ishtar/blocks/window_field_flex_url.html | |
parent | 61b7c6ae0406edfed3ddafc018f4216e6d3d7ea2 (diff) | |
download | Ishtar-4dd953b8327d684107b6485cef2fb69cd7663603.tar.bz2 Ishtar-4dd953b8327d684107b6485cef2fb69cd7663603.zip |
Sheet: refactor display of fields (more compact)
Diffstat (limited to 'ishtar_common/templates/ishtar/blocks/window_field_flex_url.html')
-rw-r--r-- | ishtar_common/templates/ishtar/blocks/window_field_flex_url.html | 6 |
1 files changed, 3 insertions, 3 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 b3a801636..4f23ff74b 100644 --- a/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html +++ b/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html @@ -1,7 +1,7 @@ {% load i18n %}{% if link %} -<dl class="col-12 col-md-6 col-lg-4 d-flex flex-wrap row"> - <dt class="col-5">{% trans caption %}</dt> - <dd class="col-7"> +<dl class="col-12 col-md-6 col-lg-3 flex-wrap"> + <dt>{% trans caption %}</dt> + <dd> <a target="_blank" href='{{link|safe}}'>{% if link_name %}{{link_name}}{% else %}{{link}}{% endif %}</a> </dd> </dl> |