summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_flex_url.html
blob: b3a8016361693de53b68337495b59aabe62e83e1 (plain)
1
2
3
4
5
6
7
8
{% 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">
        <a target="_blank" href='{{link|safe}}'>{% if link_name %}{{link_name}}{% else %}{{link}}{% endif %}</a>
    </dd>
</dl>
{% endif%}