User can cancel a letter job - happy path

This commit is contained in:
Pea Tyczynska
2019-06-18 15:52:29 +01:00
parent e751f57dc4
commit ab953896ab
4 changed files with 62 additions and 2 deletions

View File

@@ -21,4 +21,14 @@
{{ ajax_block(partials, updates_url, 'counts', finished=finished) }}
{{ ajax_block(partials, updates_url, 'notifications', finished=finished) }}
{% if template_type == "letter" %}
<div class="js-stick-at-bottom-when-scrolling">
<div class="page-footer">
<span class="page-footer-delete-link page-footer-delete-link-without-button">
<a href="{{ url_for('main.cancel_letter_job', service_id=current_service.id, job_id=job_id) }}">Cancel sending those letters</a>
</span>
{% else %}
<div>&nbsp;</div>
{% endif %}
{% endblock %}