mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 14:48:24 -04:00
20 lines
560 B
HTML
20 lines
560 B
HTML
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Previous versions
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<h1 class="font-body-2xl margin-bottom-3">Previous versions</h1>
|
|
<div class="grid-row">
|
|
{% for template in versions %}
|
|
{% with show_title=True %}
|
|
{% include 'views/templates/_template_history.html' %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for(".choose_template", service_id=current_service.id) }}">Back to current templates</a>
|
|
</p>
|
|
{% endblock %}
|