summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_flex.html
diff options
context:
space:
mode:
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
commit724f505a8f7e3fef417ea204cb39bc54d042cf50 (patch)
tree43e0e2ea68f493c6df0c13f81170e55e78901b25 /ishtar_common/templates/ishtar/blocks/window_field_flex.html
parentc2c8417c9357ac4a45da59a268e1480156b52b77 (diff)
downloadIshtar-724f505a8f7e3fef417ea204cb39bc54d042cf50.tar.bz2
Ishtar-724f505a8f7e3fef417ea204cb39bc54d042cf50.zip
Sheet: refactor display of fields (more compact)
Diffstat (limited to 'ishtar_common/templates/ishtar/blocks/window_field_flex.html')
-rw-r--r--ishtar_common/templates/ishtar/blocks/window_field_flex.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_field_flex.html b/ishtar_common/templates/ishtar/blocks/window_field_flex.html
index add2a5520..133750bee 100644
--- a/ishtar_common/templates/ishtar/blocks/window_field_flex.html
+++ b/ishtar_common/templates/ishtar/blocks/window_field_flex.html
@@ -1,6 +1,6 @@
{% load i18n %}{% if data %}
- <dl class="col-12 {% if size == 2 %}col-lg-6{% else %}col-md-6 col-lg-4{% endif %} d-flex flex-wrap row">
- <dt class="col-5">{% trans caption %}</dt>
- <dd class="col-7">{{pre_data|safe}}{{data|linebreaksbr}}{{post_data|safe }}</dd>
+ <dl class="col-12 {% if size == 2 %}col-lg-6{% else %}col-md-6 col-lg-3{% endif %} flex-wrap">
+ <dt>{% trans caption %}</dt>
+ <dd>{{pre_data|safe}}{{data|linebreaksbr}}{{post_data|safe }}</dd>
</dl>
{% endif %}