Remove the ‘next step’ banner from choose template

This page should be obvious enough that this banner isn’t needed. Will
have to keep an eye on this.
This commit is contained in:
Chris Hill-Scott
2016-04-03 12:13:29 +01:00
parent 5087157d2b
commit 6030cccb5d
2 changed files with 0 additions and 13 deletions

View File

@@ -76,7 +76,6 @@ def choose_template(service_id, template_type):
if template_type not in ['email', 'sms']:
abort(404)
jobs = job_api_client.get_job(service_id)['data']
return render_template(
'views/choose-template.html',
@@ -90,7 +89,6 @@ def choose_template(service_id, template_type):
template_type=template_type,
page_heading=get_page_headings(template_type),
service=service,
has_jobs=len(jobs),
service_id=service_id
)