예제 #1
0
def index():
    return template.layout(home.readme_text)
예제 #2
0
def univariate_eda_page():
    return template.layout(eda.load_page(db_connection))
예제 #3
0
def composite_page():
    return template.layout(composite.load_content(db_connection))
예제 #4
0
def desurvey_page():
    if misc.check_tables(db_connection):
        return template.layout(desurvey.content)
    else:
        return template.layout("DB ERROR")
예제 #5
0
def tables_page(table_name):
    return template.layout(data_table.table_view(table_name))
예제 #6
0
def upload_page():
    return template.layout(upload.modal)