Files
core/templates/_partials/fields/_label.html.twig
T

19 lines
750 B
Twig

{% import '@bolt/_macro/_macro.html.twig' as macro %}
{%- if type|default() != 'checkbox' -%}
{%- if localize|default() -%}
<span style="color: #999; font-size: 140%; line-height: 0;" class="float-right" title="{{ __('label.translatable') }}">{{ macro.icon('language') }}</span>
{%- endif -%}
<label for="{{ id }}" class="editor--label{% if type|default() == 'collection' %} sr-only{% endif %}">
{{- label -}}:
{% if required %} <span class="required-label"></span> {% endif %}
{% if info|default() %}
<i class="fa fa-info-circle" data-toggle="popover" data-trigger="hover" title="{{ label }}" data-html="true" data-content="{{ info }}"></i>
{% endif %}
</label>
{%- endif -%}