diff --git a/app/templates/partials/jobs/notifications.html b/app/templates/partials/jobs/notifications.html
index 6004a9471..9b7ef6817 100644
--- a/app/templates/partials/jobs/notifications.html
+++ b/app/templates/partials/jobs/notifications.html
@@ -19,7 +19,7 @@
{% else %}
{% if notifications %}
-
+
{% endif %}
{% if not help %}
diff --git a/app/templates/views/jobs/job.html b/app/templates/views/jobs/job.html
index a80bd7ad6..14aa297bf 100644
--- a/app/templates/views/jobs/job.html
+++ b/app/templates/views/jobs/job.html
@@ -1,6 +1,7 @@
{% extends "withnav_template.html" %}
{% from "components/banner.html" import banner %}
{% from "components/ajax-block.html" import ajax_block %}
+{% from "components/page-footer.html" import page_footer %}
{% block service_page_title %}
{{ uploaded_file_name }}
@@ -18,4 +19,11 @@
{{ ajax_block(partials, updates_url, 'counts', finished=finished) }}
{{ ajax_block(partials, updates_url, 'notifications', finished=finished) }}
+ {% if not help %}
+ {{ page_footer(
+ secondary_link=url_for('.view_template', service_id=current_service.id, template_id=template.id),
+ secondary_link_text='Back to {}'.format(template.name)
+ ) }}
+ {% endif %}
+
{% endblock %}