diff --git a/app/templates/jobs/job.html.j2 b/app/templates/jobs/job.html.j2 index a5fe6924..c4db01b4 100644 --- a/app/templates/jobs/job.html.j2 +++ b/app/templates/jobs/job.html.j2 @@ -1,6 +1,6 @@ {% extends "nopaque.html.j2" %} -{% set title = 'Job'.format(service=job.service) %} +{% set headline = 'Job'.format(service=job.service) %} {% block page_content %}
diff --git a/app/templates/nopaque.html.j2 b/app/templates/nopaque.html.j2 index bb36c5f9..bfb03e6f 100644 --- a/app/templates/nopaque.html.j2 +++ b/app/templates/nopaque.html.j2 @@ -7,7 +7,7 @@ nopaque - {% if title and not url_for(request.endpoint) == url_for('main.index') %} + {% if title and request.path != url_for('main.index') %} – {{ title }} {% endif %}