organisation dashboard page

This commit is contained in:
chrisw
2018-02-14 13:08:44 +00:00
parent c1e3658a8f
commit dd2231056d
11 changed files with 144 additions and 47 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,
register,
two_factor,
verify,
send,
add_service,
code_not_received,
jobs,
dashboard,
templates,
service_settings,
forgot_password,
new_password,
styleguide,
templates,
two_factor,
user_profile,
choose_service,
api_keys,
manage_users,
invites,
feedback,
providers,
platform_admin,
letter_jobs,
email_branding,
conversation,
organisations,
notifications,
inbound_number
verify
)