mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 09:58:25 -04:00
25 lines
629 B
HTML
25 lines
629 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
{{ template.name }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">{{ template.name }}</h1>
|
|
|
|
<div class="grid-row">
|
|
{% with show_title=False %}
|
|
{% include 'views/templates/_template_history.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
|
|
{{ page_footer(
|
|
secondary_link=url_for('.view_template_versions', service_id=current_service.id, template_id=template.id),
|
|
secondary_link_text='See all versions of this template'
|
|
) }}
|
|
|
|
{% endblock %}
|