Fix broken link on dashboard

The link in the yellow box for adding a template was missing the parameter
specifying what type of template should be created.
This commit is contained in:
Chris Hill-Scott
2016-02-25 10:21:23 +00:00
parent 602d505dc7
commit 522bf0566a

View File

@@ -35,7 +35,7 @@
</li> </li>
</ol> </ol>
""".format( """.format(
url_for(".add_service_template", service_id=service_id), url_for(".add_service_template", service_id=service_id, template_type="sms"),
url_for(".choose_template", service_id=service_id, template_type="sms") url_for(".choose_template", service_id=service_id, template_type="sms")
)|safe, )|safe,
subhead='Get started', subhead='Get started',