|
{{ trigger.drop }}
{{ trigger.name }}
|
{% if table is empty %}
{{ trigger.table }}
|
{% endif %}
{{ trigger.action_timing }}
|
{{ trigger.event_manipulation }}
|
{% if has_edit_privilege %}
{{ get_icon('b_edit', 'Edit'|trans) }}
{% else %}
{{ get_icon('bd_edit', 'Edit'|trans) }}
{% endif %}
|
{{ get_icon('b_export', 'Export'|trans) }}
|
{% if has_drop_privilege %}
{{ link_or_button(
url('/sql'),
{
'db': db,
'table': table,
'sql_query': trigger.drop,
'goto': url('/database/triggers', {'db': db})
},
get_icon('b_drop', 'Drop'|trans),
{'class': 'ajax drop_anchor'}
) }}
{% else %}
{{ get_icon('bd_drop', 'Drop'|trans) }}
{% endif %}
|