Ver código fonte

hide label ticketmessage

ideas
Charly 3 anos atrás
pai
commit
927874d041
2 arquivos alterados com 1 adições e 40 exclusões
  1. +1
    -1
      Resources/views/admin/ticket/new.html.twig
  2. +0
    -39
      Resources/views/adminlte/crud/ticket/form_theme.html.twig

+ 1
- 1
Resources/views/admin/ticket/new.html.twig Ver arquivo

@@ -10,7 +10,7 @@
{% embed '@LcSov/adminlte/embed/card.html.twig' %}
{% block header_wrapper %}{% endblock %}
{% block body %}
{% form_theme form '@LcSov/adminlte/crud/ticket/form_theme.html.twig' %}
{% form_theme form '@LcSov/adminlte/crud/form_theme.html.twig' %}
{{ form(form) }}
{% endblock %}
{% block footer_wrapper %}{% endblock %}

+ 0
- 39
Resources/views/adminlte/crud/ticket/form_theme.html.twig Ver arquivo

@@ -1,39 +0,0 @@
{% use '@LcSov/adminlte/crud/form_theme.html.twig' %}

{% block form_label %}
{# <div class="some-custom-class"> #}
{# {{ parent() }} #}
{# </div> #}

{% if label is same as(false) -%}
<label>{# the empty <label> is needed to not break the form design #}</label>
{%- else -%}
{%- if compound is defined and compound -%}
{%- set element = 'legend' -%}
{%- set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' col-form-label')|trim}) -%}
{%- else -%}
{%- set label_attr = label_attr|merge({for: id, class: (label_attr.class|default('') ~ ' form-control-label')|trim}) -%}
{%- endif -%}
{% if required -%}
{% set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' required')|trim}) %}
{%- endif -%}
{% if label is empty -%}
{%- if label_format is not empty -%}
{% set label = label_format|replace({
'%name%': name,
'%id%': id,
}) %}
{%- else -%}
{# {% set label = name|humanize %} #}
{%- endif -%}
{%- endif -%}

{% set entityNameOrObject = form.parent.vars.data %}
{% if not entityNameOrObject and form.parent.vars.errors.form.config.dataClass is defined %}
{% set entityNameOrObject = form.parent.vars.errors.form.config.dataClass %}
{% endif %}
{#{{ dump() }}#}
<{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ (label is not empty and '.' in label) ? label|trans({}, 'admin') : name|lc_trans_admin_field(entityNameOrObject) }}</{{ element|default('label') }}>

{%- endif -%}
{% endblock %}

Carregando…
Cancelar
Salvar