mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-09 12:54:14 -05:00
_The code for this is quite hacky and light on tests. But I’d really like to get it in the app for the research tomorrow to see how well the feature works._ This commit changes the tour from being a set of static screens to some help which guides you through the process of sending your first test message. The theory behind this is that what users are really struggling with is the concept of a variable, rather than the relationship between the placeholders and the column headers. And like learning to program, the best way to learn is by taking an example and modifying it to your own needs. This means that when someone adds their first service we set them up an example email template and an example text message template. Then there is a guided, three step process where _all_ the user can do is send a test message to themselves. Once the message is sent, the user still has the example templates which they can edit, rather than having to remember what they’re supposed to be doing.
32 lines
500 B
Python
32 lines
500 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main', __name__) # noqa
|
|
|
|
from app.main.views import (
|
|
index,
|
|
sign_in,
|
|
sign_out,
|
|
register,
|
|
two_factor,
|
|
verify,
|
|
send,
|
|
add_service,
|
|
code_not_received,
|
|
jobs,
|
|
dashboard,
|
|
templates,
|
|
service_settings,
|
|
forgot_password,
|
|
new_password,
|
|
styleguide,
|
|
user_profile,
|
|
choose_service,
|
|
api_keys,
|
|
manage_users,
|
|
invites,
|
|
all_services,
|
|
feedback,
|
|
providers,
|
|
platform_admin
|
|
)
|