summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-01-02 10:18:44 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-01-11 17:30:46 +0100
commit066a782e440b64f7584475347c1b762c89e0cab5 (patch)
treee5d0f38c898f24c420702682ded8d12ada2dbc3e /ishtar_common/templates/ishtar/blocks
parente1ca97e099fab92f48471f34214bd0c5233dff5f (diff)
downloadIshtar-066a782e440b64f7584475347c1b762c89e0cab5.tar.bz2
Ishtar-066a782e440b64f7584475347c1b762c89e0cab5.zip
Work on M2M historization
Diffstat (limited to 'ishtar_common/templates/ishtar/blocks')
-rw-r--r--ishtar_common/templates/ishtar/blocks/window_field_flex_historized_multiple.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_field_flex_historized_multiple.html b/ishtar_common/templates/ishtar/blocks/window_field_flex_historized_multiple.html
new file mode 100644
index 000000000..a68bd0cb4
--- /dev/null
+++ b/ishtar_common/templates/ishtar/blocks/window_field_flex_historized_multiple.html
@@ -0,0 +1,8 @@
+{% 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">{% for d in data %}
+ {% if forloop.counter0 %} ; {% endif %}{{ d }}
+ {% endfor %}</dd>
+</dl>
+{% endif %}