from .tool.func import * async def list_user(arg_num = 1): with get_db_connect() as conn: curs = conn.cursor() sql_num = (arg_num * 50 - 50) if arg_num * 50 > 0 else 0 list_data = '' + await get_next_page_bottom('/list/user/{}', arg_num, user_list) return await render_template( await get_lang('member_list'), list_data, 0, [['other', await get_lang('return')]] )