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