9 lines
591 B
HTML
9 lines
591 B
HTML
{% if block_id == 'button_save' %}
|
|
<button id="{{ model.ID_BUTTON_SAVE }}" type="button" class="{{ model.FLAG_BUTTON_SUBMIT }}">Save</button>
|
|
{% elif block_id == 'button_cancel' %}
|
|
<button id="{{ model.ID_BUTTON_CANCEL }}" type="button" class="{{ model.FLAG_BUTTON_CANCEL }}">Cancel</button>
|
|
{% elif block_id == 'button_add' %}
|
|
<button id="{{ model.ID_BUTTON_ADD }}" type="button" class="{{ model.FLAG_ADD }}">Add new</button>
|
|
{% elif block_id == 'button_confirm' %}
|
|
<button id="{{ model.ID_BUTTON_CONFIRM }}" type="button" class="{{ model.FLAG_BUTTON_SUBMIT }}">Confirm</button>
|
|
{% endif %} |