7 lines
704 B
HTML
7 lines
704 B
HTML
|
|
{% with _attribute_text = '' if (attribute_text is not defined or attribute_text is none) else attribute_text %}
|
|
{% set value_previous = '0' if (is_blank_row or (location_preview is not defined) or (location_preview is none) or (location_preview.id_location is none)) else location_preview.id_location %}
|
|
{% set text_previous = '' if (is_blank_row or (location_preview is not defined) or (location_preview is none)) else model.format_null_string_as_blank(location_preview.name) %}
|
|
|
|
<div class="{{ model.FLAG_LOCATION }} {{ _attribute_text }}" {{ model.ATTR_VALUE_PREVIOUS }}="{{ value_previous }}" {{ model.ATTR_VALUE_CURRENT }}="{{ value_previous }}">{{ text_previous }}</div>
|
|
{% endwith %} |