55 lines
2.7 KiB
HTML
55 lines
2.7 KiB
HTML
|
|
{% if is_blank_row %}
|
|
<tr class="{{ model.FLAG_ROW_NEW }} {{ model.FLAG_COMMAND_BUTTON_LINK }}" {{ model.ATTR_ID_COMMAND_BUTTON_LINK }}>
|
|
<td class="{{ model.FLAG_COMMAND_CATEGORY }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_command_category.html' %}
|
|
</td>
|
|
<td class="{{ model.FLAG_COMMAND }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_command.html' %}
|
|
</td>
|
|
<td class="{{ model.FLAG_BUTTON_SHAPE }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_button_shape.html' %}
|
|
</td>
|
|
<td class="{{ model.FLAG_COLOUR }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_colour.html' %}
|
|
</td>
|
|
<td class="{{ model.FLAG_BUTTON_ICON }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_image.html' %}
|
|
</td>
|
|
<td class="{{ model.FLAG_LOCATION }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_location.html' %}
|
|
</td>
|
|
{% set active = True %}
|
|
{% include 'components/dog/_td_active.html' %}
|
|
</tr>
|
|
{% else %}
|
|
<tr class="{{ model.FLAG_COMMAND_BUTTON_LINK }}" {{ model.ATTR_ID_COMMAND_BUTTON_LINK }}="{{ link.id_link }}">
|
|
{% set command = link.command %}
|
|
{% set command_category = command.command_category %}
|
|
<td class="{{ model.FLAG_COMMAND_CATEGORY }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_command_category.html' %}
|
|
</td>
|
|
<td class="{{ model.FLAG_COMMAND }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_command.html' %}
|
|
</td>
|
|
{% set button_shape = link.button_shape %}
|
|
<td class="{{ model.FLAG_BUTTON_SHAPE }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_button_shape.html' %}
|
|
</td>
|
|
{% set colour = link.colour %}
|
|
<td class="{{ model.FLAG_COLOUR }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_colour.html' %}
|
|
</td>
|
|
{% set image = link.button_icon.image %}
|
|
<td class="{{ model.FLAG_BUTTON_ICON }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_image.html' %}
|
|
</td>
|
|
{% set location_preview = link.location %}
|
|
<td class="{{ model.FLAG_LOCATION }} {{ model.FLAG_DDL_PREVIEW }}">
|
|
{% include 'components/dog/_preview_DDL_location.html' %}
|
|
</td>
|
|
{% set active = link.active %}
|
|
{% include 'components/dog/_td_active.html' %}
|
|
</tr>
|
|
{% endif %}
|