from .tool.func import * async def main_setting_top_menu(): with get_db_connect() as conn: curs = conn.cursor() if await acl_check('', 'owner_auth', '', '') == 1: return await re_error(conn, 0) if flask.request.method == 'POST': curs.execute(db_change("select name from other where name = 'top_menu'")) if curs.fetchall(): curs.execute(db_change("update other set data = ? where name = 'top_menu'"), [flask.request.form.get('content', '')]) else: curs.execute(db_change("insert into other (name, data, coverage) values ('top_menu', ?, '')"), [flask.request.form.get('content', '')]) await acl_check(tool = 'owner_auth', memo = 'edit_set (top_menu)') return redirect(conn, '/setting/top_menu') else: curs.execute(db_change("select data from other where name = 'top_menu'")) db_data = curs.fetchall() db_data = db_data[0][0] if db_data else '' return easy_minify(flask.render_template(await skin_check(), imp = [await get_lang('top_menu_setting'), await wiki_set(), await wiki_custom(), wiki_css([0, 0])], data = ''' EX)
ONTS
https://2du.pythonanywhere.com/
FrontPage
/w/FrontPage

''' + await get_lang('not_support_skin_warning') + '''

''', menu = [['setting', await get_lang('return')]] ))