|
{{ sql_drop }}
{{ routine.name }}
|
{{ routine.type }}
|
{{ routine.returns }}
|
{% if has_edit_privilege %}
{{ get_icon('b_edit', 'Edit'|trans) }}
{% else %}
{{ get_icon('bd_edit', 'Edit'|trans) }}
{% endif %}
|
{% if has_execute_privilege and execute_action is not empty %}
{% if execute_action == 'execute_routine' %}
{{ get_icon('b_nextpage', 'Execute'|trans) }}
{% else %}
{{ get_icon('b_nextpage', 'Execute'|trans) }}
{% endif %}
{% else %}
{{ get_icon('bd_nextpage', 'Execute'|trans) }}
{% endif %}
|
{% if has_export_privilege %}
{{ get_icon('b_export', 'Export'|trans) }}
{% else %}
{{ get_icon('bd_export', 'Export'|trans) }}
{% endif %}
|
{{ link_or_button(
url('/sql'),
{
'db': db,
'table': table,
'sql_query': sql_drop,
'goto': url('/database/routines', {'db': db})
},
get_icon('b_drop', 'Drop'|trans),
{'class': 'ajax drop_anchor'}
) }}
|