Feat(SQL, UI): Button Icons page, Command Button Links page created with get and set functionality.

This commit is contained in:
2025-07-17 18:58:06 +01:00
parent e0805ec2ed
commit 4e214c3bde
151 changed files with 12224 additions and 463 deletions

View File

@@ -1,7 +1,7 @@
{% 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 else location_preview.id_location %}
{% set text_previous = '' if is_blank_row else location_preview.name %}
{% 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 }}" {{ model.ATTR_VALUE_PREVIOUS }}="{{ value_previous }}" {{ model.ATTR_VALUE_CURRENT }}="{{ value_previous }}">{{ text_previous }}</div>
<div class="{{ model.FLAG_LOCATION }} {{ _attribute_text }}" {{ model.ATTR_VALUE_PREVIOUS }}="{{ value_previous }}" {{ model.ATTR_VALUE_CURRENT }}="{{ value_previous }}">{{ text_previous }}</div>
{% endwith %}