示例#1
0
def table_view_structure(host, shortname, table_name):
    connection, meta, _ = BindContainer.get(shortname)
    return make_response(render_template(
                        'table/structure.html',
                        host=host), 200)
示例#2
0
def database_view_operations(host, shortname):
    connection, meta, _ = BindContainer.get(shortname)
    return make_response(render_template(
                        'database/operations.html',
                        host=host), 200)