diff options
Diffstat (limited to 'ishtar_common/templates')
| -rw-r--r-- | ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple.html | 8 | ||||
| -rw-r--r-- | ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple_full.html | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple.html b/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple.html new file mode 100644 index 000000000..b6faa0cc1 --- /dev/null +++ b/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_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-3{% endif %} flex-wrap"> + <dt>{% trans caption %}</dt> + <dd>{% for d in data %} + {% if forloop.counter0 %} ; {% endif %}{{d.link}} {{ d.item }} + {% endfor %}</dd> +</dl> +{% endif %} diff --git a/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple_full.html b/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple_full.html new file mode 100644 index 000000000..12ab9d524 --- /dev/null +++ b/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple_full.html @@ -0,0 +1,9 @@ +{% load i18n %}{% if data %} +<dl class="col-12"> + <dt>{% trans caption %}</dt> + <dd>{% for d in data %} + {% if forloop.counter0 %} ; {% endif %}{{d.link}} {{ d.item }} + {% endfor %}</dd> +</dl> +{% endif %} + |
