{% comment %} Renders each option (search result) in the dropdown. If is_tabular is true, renders a row of columns. If not, checks for custom rendering templates. {% endcomment %} {% load i18n %} option: function(data, escape) { {% include "django_tomselect/helpers/decode_if_needed.html" %} {% if 'data_template_option' in widget.attrs.keys and widget.attrs.data_template_option %} var template = {{ widget.attrs.data_template_option|safe }}; var result = template.replace(/\$\{data\.(\w+)\}/g, function(match, fieldName) { var value = data[fieldName]; if (value === undefined || value === null) return ''; return escape(String(value)); }); // Also support ${escape(data.fieldName)} pattern for explicit escaping result = result.replace(/\$\{escape\(data\.(\w+)\)\}/g, function(match, fieldName) { var value = data[fieldName]; if (value === undefined || value === null) return ''; return escape(String(value)); }); return result; {% elif widget.is_tabular %} // For tabular display, show in rows and columns let columns = ''; {% if widget.plugins.dropdown_header.show_value_field %} columns += `