You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
393 B
11 lines
393 B
<td class="text-center"> |
|
<select name="criteriaColumn[{{ column_number }}]" size="1"> |
|
<option value=""> </option> |
|
{% for column in column_names %} |
|
<option value="{{ column }}" |
|
{%- if column is same as(selected) %} selected="selected"{% endif %}> |
|
{{- column -}} |
|
</option> |
|
{% endfor %} |
|
</select> |
|
</td>
|
|
|