link-service-to-organisations-tweaks

This commit is contained in:
chrisw
2018-02-14 16:13:11 +00:00
parent dd2231056d
commit 14b80622b7
13 changed files with 62 additions and 46 deletions

View File

@@ -3,34 +3,34 @@ from flask import Blueprint
main = Blueprint('main', __name__) # noqa
from app.main.views import ( # noqa
add_service,
api_keys,
choose_service,
code_not_received,
conversation,
dashboard,
email_branding,
feedback,
forgot_password,
inbound_number,
index,
invites,
jobs,
letter_jobs,
manage_users,
new_password,
notifications,
organisations,
platform_admin,
providers,
register,
send,
service_settings,
sign_in,
sign_out,
styleguide,
templates,
register,
two_factor,
verify,
send,
add_service,
code_not_received,
jobs,
dashboard,
templates,
service_settings,
forgot_password,
new_password,
styleguide,
user_profile,
verify
choose_service,
api_keys,
manage_users,
invites,
feedback,
providers,
platform_admin,
letter_jobs,
email_branding,
conversation,
organisations,
notifications,
inbound_number
)

View File

@@ -789,6 +789,7 @@ def link_service_to_organisation(service_id):
return render_template(
'views/service-settings/link-service-to-organisation.html',
has_organisations=organisations,
form=form,
)