forked from Github-Mirrors/canaille
Form macro input classes cleanups
This commit is contained in:
parent
a2da437ded
commit
f1f5c81ada
1 changed files with 2 additions and 13 deletions
|
@ -6,7 +6,6 @@ container=true,
|
||||||
noindicator=false,
|
noindicator=false,
|
||||||
indicator_icon=none,
|
indicator_icon=none,
|
||||||
indicator_text=none,
|
indicator_text=none,
|
||||||
suffix_text=none,
|
|
||||||
display=true
|
display=true
|
||||||
) -%}
|
) -%}
|
||||||
{% set field_visible = field.type != 'HiddenField' and field.type !='CSRFTokenField' %}
|
{% set field_visible = field.type != 'HiddenField' and field.type !='CSRFTokenField' %}
|
||||||
|
@ -26,14 +25,10 @@ display=true
|
||||||
{% set lock_indicator = field.render_kw and ("readonly" in field.render_kw or "disabled" in field.render_kw) %}
|
{% set lock_indicator = field.render_kw and ("readonly" in field.render_kw or "disabled" in field.render_kw) %}
|
||||||
{% set required_indicator = "required" in field.flags %}
|
{% set required_indicator = "required" in field.flags %}
|
||||||
{% set corner_indicator = not noindicator and (indicator_icon or lock_indicator or required_indicator) %}
|
{% set corner_indicator = not noindicator and (indicator_icon or lock_indicator or required_indicator) %}
|
||||||
{% set labeled = suffix_text or corner_indicator %}
|
|
||||||
{% if field_visible %}
|
{% if field_visible %}
|
||||||
<div class="ui
|
<div class="ui
|
||||||
{%- if suffix_text %} right{% endif -%}
|
{%- if corner_indicator %} corner labeled{% endif -%}
|
||||||
{%- if corner_indicator %} corner{% endif -%}
|
{%- if icon or field.description %} left icon{% endif -%}
|
||||||
{%- if labeled %} labeled{% endif -%}
|
|
||||||
{%- if icon %} left icon{% endif -%}
|
|
||||||
{%- if field.description %} left icon{% endif -%}
|
|
||||||
{%- if field.type not in ("BooleanField", "RadioField") %} input{% endif -%}
|
{%- if field.type not in ("BooleanField", "RadioField") %} input{% endif -%}
|
||||||
">
|
">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -52,12 +47,6 @@ display=true
|
||||||
{{ field(class_="ui fluid dropdown", **kwargs) }}
|
{{ field(class_="ui fluid dropdown", **kwargs) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if suffix_text %}
|
|
||||||
<div class="ui basic label">
|
|
||||||
{{ suffix_text }}{% if corner_indicator %} {% endif %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if not noindicator %}
|
{% if not noindicator %}
|
||||||
{% if indicator_icon %}
|
{% if indicator_icon %}
|
||||||
<div class="ui corner label"{% if indicator_text %} title="{{ indicator_text }}"{% endif %}>
|
<div class="ui corner label"{% if indicator_text %} title="{{ indicator_text }}"{% endif %}>
|
||||||
|
|
Loading…
Reference in a new issue