Added display of daily limit and remaining amount after csv upload

This commit is contained in:
Andrew Shumway
2023-05-15 14:37:05 -06:00
parent 855ddbb9e4
commit d2fd5ab07d
6 changed files with 21 additions and 4 deletions

View File

@@ -56,4 +56,11 @@
<h2 class="heading-medium">Your file will populate this template ({{ template.name }})</h2>
{{ template|string }}
<div>
<h2 class="heading-medium">Daily message limit for this service:</h2>
<p class="govuk-body">{{ current_service.name }} - {{ current_service.message_limit }}</p>
<h2 class="heading-medium">Daily remaining messages for this service:</h2>
<p class="govuk-body">{{ remaining_messages }}</p>
</div>
{% endblock %}