Files
notifications-admin/app/templates/components/branding-preview.html
T

12 lines
455 B
HTML
Raw Normal View History

2022-03-01 12:25:23 +00:00
{% macro branding_preview(branding_style, endpoint) %}
2022-03-01 12:26:05 +00:00
<iframe src="{{ url_for(endpoint, branding_style=branding_style) }}" class="branding-preview" scrolling="no"></iframe>
2022-03-01 12:25:23 +00:00
{% endmacro %}
{% macro email_branding_preview(branding_style) %}
{{ branding_preview(branding_style, 'main.email_template') }}
{% endmacro %}
{% macro letter_branding_preview(branding_style) %}
{{ branding_preview(branding_style, 'main.letter_template') }}
2022-03-01 12:20:20 +00:00
{% endmacro %}