summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html
blob: 9b3799bafdb2027fbee8e9063de54ab95afb5f5f (plain)
1
2
3
4
5
6
7
8
{% load i18n %}{% if link %}
<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>
{% endif%}