summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_flex_file.html
blob: 83271facbcf521e22aa0ee5bf3d96ca78eb441a2 (plain)
1
2
3
4
5
6
7
8
9
10
{% load i18n %}{% if link %}
<dl class="col-12 col-md-6 col-lg-3 flex-wrap">
    <dt>{% trans caption %}</dt>
    <dd>
        <a href="{{link|safe}}" class="btn btn-secondary" target="_blank" title="{% if link_name %}{{link_name}}{% else %}{{link}}{% endif %}">
            {% if link_name %}{{link_name|truncatechars:18}}{% else %}{{link|truncatechars:18}}{% endif %}
        </a>
    </dd>
</dl>
{% endif%}