Remove line about checklist from go live email

It’s impossible for people to go live without technically completing the
checklist now.
This commit is contained in:
Chris Hill-Scott
2019-05-09 17:42:29 +01:00
parent d6b6f1689f
commit 507b5b9933
2 changed files with 0 additions and 5 deletions

View File

@@ -1,7 +1,5 @@
from collections import OrderedDict
from datetime import datetime
import pytz
from flask import (
abort,
current_app,
@@ -202,7 +200,6 @@ def submit_request_to_go_live(service_id):
'\n---'
'\nOrganisation type: {organisation_type}'
'\nAgreement signed: {agreement}'
'\nChecklist completed: {checklist}'
'\nEmails in next year: {volume_email_formatted}'
'\nText messages in next year: {volume_sms_formatted}'
'\nLetters in next year: {volume_letter_formatted}'
@@ -214,7 +211,6 @@ def submit_request_to_go_live(service_id):
service_dashboard=url_for('main.service_dashboard', service_id=current_service.id, _external=True),
organisation_type=str(current_service.organisation_type).title(),
agreement=current_service.organisation.as_human_readable(current_user.email_domain),
checklist=current_service.go_live_checklist_completed_as_yes_no,
volume_email_formatted=format_if_number(current_service.volume_email),
volume_sms_formatted=format_if_number(current_service.volume_sms),
volume_letter_formatted=format_if_number(current_service.volume_letter),