예제 #1
0
def make_blueprint():
    """
    Creates the blueprint for the dashboard.
    """
    curr_dir = os.path.abspath(os.path.dirname(__file__))

    blueprint = Blueprint(
        name="dashboard",
        url_prefix="/dashboard",
        template_path=os.path.join(curr_dir, "templates"),
    )
    blueprint.add_handlers(".*", [
        tornado.web.url("/", Index, name="index"),
    ])
    return blueprint
예제 #2
0
def make_blueprint():
    """
    Creates the blueprint for the settings.
    """
    curr_dir = os.path.abspath(os.path.dirname(__file__))

    blueprint = Blueprint(
        name="settings",
        url_prefix="/settings",
        template_path=os.path.join(curr_dir, "templates"),
    )
    blueprint.add_handlers(".*", [
        tornado.web.url("/", Index, name="index"),
        tornado.web.url("/account", Account, name="account")
    ])
    return blueprint