コード例 #1
0
def Contact(session_id, username):
    return html.Div([
        Header(username),
        NavBar(UrlIndex.CONTACT.value),
        Body(),
        Footer(True)
    ])
コード例 #2
0
def ChangeUserPassword(username=None):
    return html.Div([
        Header(username),
        NavBar(),
        Body(username),
        Footer(True)
    ])
コード例 #3
0
def CreateUser(username=None):
    return html.Div([
        Header(username),
        NavBar(),
        html.Br(),
        html.Br(),
        html.Br(),
        dbc.Container(CreateUserCard()),
    ])
コード例 #4
0
ファイル: userportal.py プロジェクト: rigdenlab/conplot
def UsersPortal(username=None):
    return html.Div([
        Header(username),
        NavBar(),
        html.Br(),
        html.Br(),
        html.Br(),
        dbc.Container(UserPortalCard(username)),
        Footer(True)
    ])
コード例 #5
0
def noPage(url, username):
    layout = html.Div([
        Header(username),
        NavBar(),
        html.Br(),
        html.Br(),
        html.Br(),
        dbc.Container(NoPageFoundCard(url)),
    ],
                      className="no-page")
    return layout
コード例 #6
0
def PostgresConnectionError():
    return html.Div([
        Header(),
        NavBar(UrlIndex.SESSION_TIMEOUT.value),
        Body(),
    ])
コード例 #7
0
def Home(session_id, username):
    return html.Div([
        Header(username),
        NavBar(UrlIndex.HOME.value),
        Body(),
    ])
コード例 #8
0
ファイル: rigdenlab.py プロジェクト: rigdenlab/conplot
def RigdenLab(session_id, username):
    return html.Div(
        [Header(username),
         NavBar(UrlIndex.RIGDEN.value),
         Body(),
         Footer()])
コード例 #9
0
def UserStorage(username=None, current_session_pkid=None):
    return html.Div([
        Header(username),
        NavBar(),
        Body(username, current_session_pkid)
    ])
コード例 #10
0
ファイル: sharesession.py プロジェクト: rigdenlab/conplot
def ShareSession(username=None):
    return html.Div([Header(username), NavBar(), Body(username)])