mirror of
https://github.com/jbcr/core.git
synced 2026-04-28 19:23:14 +02:00
19 lines
750 B
Twig
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 -%}
|