Remove template link from preview for precompiled letters

This commit is contained in:
Ken Tsang
2018-03-02 17:06:51 +00:00
parent 5c26d7a061
commit bcf86239c6
5 changed files with 49 additions and 4 deletions

View File

@@ -15,12 +15,16 @@
</h1>
<p>
{% if help %}
{{ template.name }}
{% if is_precompiled_letter %}
Sent
{% else %}
<a href="{{ url_for('.view_template', service_id=current_service.id, template_id=template.id) }}">{{ template.name }}</a>
{% if help %}
{{ template.name }}
{% else %}
<a href="{{ url_for('.view_template', service_id=current_service.id, template_id=template.id) }}">{{ template.name }}</a>
{% endif %}
sent
{% endif %}
sent
{% if job and job.original_file_name != 'Report' %}
from
<a href="{{ url_for('.view_job', service_id=current_service.id, job_id=job.id) }}">{{ job.original_file_name }}</a>