from .tool.func import * def topic_list(name = 'Test'): with get_db_connect() as conn: curs = conn.cursor() div = '' tool = flask.request.args.get('tool', '') plus = '' menu = [['topic/' + url_pas(name), load_lang('return')]] if tool == 'close': curs.execute(db_change("select code, sub from rd where title = ? and stop = 'O' order by sub asc"), [name]) sub = load_lang('closed_discussion') elif tool == 'agree': curs.execute(db_change("select code, sub from rd where title = ? and agree = 'O' order by sub asc"), [name]) sub = load_lang('agreed_discussion') else: sub = load_lang('discussion_list') menu = [['w/' + url_pas(name), load_lang('document')]] plus = ''' (' + load_lang('closed_discussion') + ''') (' + load_lang('agreed_discussion') + ''')
(''' + load_lang('make_new_topic') + ''') ''' curs.execute(db_change("select code, sub from rd where title = ? and stop != 'O' order by date desc"), [name]) for data in curs.fetchall(): curs.execute(db_change("select id from topic where code = ? order by id + 0 desc limit 1"), [data[0]]) t_data = curs.fetchall() div += '''

' + data[0] + '. ' + data[1] + '''

''' if div == '': plus = re.sub(r'^
', '', plus) return easy_minify(flask.render_template(skin_check(), imp = [name, wiki_set(), wiki_custom(), wiki_css(['(' + sub + ')', 0])], data = div + plus, menu = menu ))