mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 05:29:38 -04:00
Adds a user interface for updating all the columns added in https://github.com/alphagov/notifications-api/pull/2368 Sorry for the mega commit 😓
24 lines
738 B
HTML
24 lines
738 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% block service_page_title %}
|
|
Preview email branding
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Preview email branding</h1>
|
|
<div class="grid-row">
|
|
<div class="column-full">
|
|
<iframe src="{{ url_for('main.email_template', branding_style=form.branding_style.data) }}" class="branding-preview"></iframe>
|
|
{% call form_wrapper(action=action) %}
|
|
<div class="form-group">
|
|
{{ form.hidden_tag() }}
|
|
<div class="page-footer">
|
|
<button type="submit" class="button">Save</button>
|
|
</div>
|
|
</div>
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|