Files
notifications-admin/app/templates/views/templates/choose_history.html
2023-08-23 16:18:25 -04:00

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 %}