fix folder name

This commit is contained in:
2021-03-18 13:37:13 +01:00
parent a2f6773f5a
commit eaa0ad925f
1578 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{% if selected|length > 0 %}
{%- for choice in choices -%}
{% if choice['slug'] in selected %}
{%- if choice['slug'] is not same as('_other') -%}
{{ choice['name']|localize_translatable_string|csv_cell }}
{%- else -%}
{{ choice['name']|csv_cell }}
{%- endif -%}
{% endif %}
{%- endfor -%}
{% else %}
{{ 'None'|trans }}
{% endif %}

View File

@@ -0,0 +1,29 @@
{% if selected|length > 0 %}
<ul class="custom_fields choice">
{%- for choice in choices -%}
{% if choice['slug'] in selected %}
{%- set is_selected = true -%}
{%- else -%}
{%- set is_selected = false -%}
{%- endif -%}
{%- if is_selected -%}
<li class="{% if is_selected or expanded == 1 %} selected {% endif %}">
{%- if is_selected -%}
<i class="fa fa-check-square-o"></i>&nbsp;
{%- else -%}
<i class="fa fa-square-o"></i>&nbsp;
{%- endif -%}
{%- if choice['slug'] is not same as('_other') -%}
{{ choice['name']|localize_translatable_string }}
{%- else -%}
{{ choice['name'] }}
{%- endif -%}
</li>
{%- endif -%}
{%- endfor -%}
</ul>
{% else %}
<div class="custom_fields_choice empty">{{ 'None'|trans }}</div>
{% endif %}

View File

@@ -0,0 +1 @@
{% if values|length == 1 %}{{ values[0].text|localize_translatable_string|default("")|csv_cell }}{% elseif values|length ==0 %}{{ 'emtpy'|csv_cell }}{% else %}{{ 'pas de rendu multiple'|csv_cell }}{% endif %}

View File

@@ -0,0 +1,11 @@
{% if values|length > 0 %}
<ul class="custom_fields long_choice {% if values|length == 1 %}unique{% endif %}">
{%- for value in values -%}
<li class="long_choice_item long_choice-key-{{ value.key }} long_choice-ikey-{{ value.internalKey }} long_choice-parent-ikey-{{ value.parent.internalKey }}">
<i class="fa fa-check-square-o"></i>&nbsp;{{ value.text|localize_translatable_string }}
</li>
{%- endfor -%}
</ul>
{% else %}
<div class="custom_fields_choice long_choice empty">{{ 'None'|trans }}</div>
{% endif %}

View File

@@ -0,0 +1 @@
{% if value is not empty %}{{ value|format_date(format)}}{% endif %}

View File

@@ -0,0 +1 @@
{% if number is not empty %}{{ number|number_format(scale)|csv_cell }}{% endif %}

View File

@@ -0,0 +1 @@
{% if number is not empty %}{{ number|number_format(scale) }}&nbsp;{{ post|default('') }}{% endif %}

View File

@@ -0,0 +1 @@
{% if text is not empty %}{{ text|csv_cell}}{% else %}{{ 'None'|trans }}{% endif %}

View File

@@ -0,0 +1 @@
{% if text is not empty %}{{ text|nl2br }}{% else %}<span class="custom_fields_text empty">{{ 'None'|trans }}</span>{% endif %}

View File

@@ -0,0 +1,5 @@
{% if type == "title"%}
<h2>{{ title | localize_translatable_string }}</h2>
{% else %}
<h3>{{ title | localize_translatable_string }}</h3>
{% endif %}