Make download PDF link work

To see what happens if people click it in the lab tomorrow.
This commit is contained in:
Chris Hill-Scott
2017-04-25 13:03:45 +01:00
committed by GitHub
parent d88199e414
commit 85b8a32360

View File

@@ -178,7 +178,7 @@
{% if template.template_type != 'letter' or not request.args.from_test %}
<input type="submit" class="button" value="Send {{ count_of_recipients }} {{ message_count_label(count_of_recipients, template.template_type, suffix='') }}" />
{% else %}
<a href="#" class="heading-medium">Download as PDF</a>
<a href="{{ url_for('main.check_messages_preview', service_id=current_service.id, template_type=template.template_type, upload_id=upload_id, filetype='pdf') }}" download="download" class="heading-medium">Download as PDF</a>
{% endif %}
<a href="{{ back_link }}" class="page-footer-back-link">Back</a>
</form>