22 lines
840 B
HTML
22 lines
840 B
HTML
|
|
<div class="{{ model.FLAG_COMMAND }}" >{% if not is_blank_row %}{{ command.name }}{% endif %}</div>
|
|
|
|
{#
|
|
{ % if not is_blank_row % }
|
|
<div
|
|
class="{{ model.FLAG_COMMAND }}"
|
|
{#
|
|
{{ model.ATTR_VALUE_CURRENT }}="{ { command.id_command } }"
|
|
{{ model.ATTR_VALUE_PREVIOUS }}="{ { command.id_command } }"
|
|
#}
|
|
>{ { command.name } }</div>
|
|
{ % else % }
|
|
<select class="{{ model.FLAG_COMMAND }}"> {# {{ model.ATTR_VALUE_CURRENT }}="0" {{ model.ATTR_VALUE_PREVIOUS }}="0" #}
|
|
{ % include 'components/common/inputs/_option_blank.html' % }
|
|
{ % for command in model.filter_commands % }
|
|
<option value="{ { command.id_command } }">{ { command.name } }</option>
|
|
{ % endfor % }
|
|
</select>
|
|
{ % endif % }
|
|
#}
|