def index(): return template.layout(home.readme_text)
def univariate_eda_page(): return template.layout(eda.load_page(db_connection))
def composite_page(): return template.layout(composite.load_content(db_connection))
def desurvey_page(): if misc.check_tables(db_connection): return template.layout(desurvey.content) else: return template.layout("DB ERROR")
def tables_page(table_name): return template.layout(data_table.table_view(table_name))
def upload_page(): return template.layout(upload.modal)