Creating a budget overview from a SuperX export.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
551 B

{% extends "superx_budget:pyramid/templates/layout.jinja2" %}
{% block content %}
<div class="row">
<div class="col">
<h2>Email sent!</h2>
<p>An email with the attatched file "<span class="text-info">{{ xls_name }}</span>" was sent to the following recipients:
<ul>
{% for r in recipients: %}
<li>{{ r }}</li>
{% endfor %}
</ul>
<h4>You can now close this browser window.</h4>
</div>
</div>
{% endblock content %}