mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-28 11:49:13 -04:00
This extends the same thing we’ve done for email branding previews in the previous commit to cover letter branding as well.
12 lines
440 B
HTML
12 lines
440 B
HTML
{% macro branding_preview(branding_style, endpoint) %}
|
|
<iframe src="{{ url_for(endpoint, branding_style=branding_style) }}" class="branding-preview"></iframe>
|
|
{% 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') }}
|
|
{% endmacro %}
|