14 lines
479 B
Twig
14 lines
479 B
Twig
|
|
{% macro export(view) %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
|
|
{% set actions = {} %}
|
|
{% if view == 'preview' %}
|
|
{% set actions = {'off': {'id':'export-toggle-button'}} %}
|
|
{% endif %}
|
|
{% set actions = actions|merge({'help': {'url': 'export.html'|docu_link, 'target': '_blank'}}) %}
|
|
|
|
{% set event = trigger('actions.export', {'actions': actions, 'view': view}) %}
|
|
{{ widgets.page_actions(event.payload.actions) }}
|
|
{% endmacro %}
|