9 lines
262 B
Twig
9 lines
262 B
Twig
{% macro doctor(view) %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
|
|
{% set actions = {} %}
|
|
|
|
{% set event = trigger('actions.doctor', {'actions': actions, 'view': view}) %}
|
|
{{ widgets.page_actions(event.payload.actions) }}
|
|
{% endmacro %}
|