def app_complete(app_id): """ 游戏创建完成 """ db = g._db app = App.get_app(db, app_id) return render_template('app/complete.html', app=app)
def app_detail(appid): """ store 详情 """ db = g._db app = App.get_app(db, appid) return render_template('app/detail.html', app=app)
def app_edit(appid): """ 创建游戏 """ app = App.get_app(g._db, appid) return render_template('app/edit.html', data={'game': app, 'method': 'edit'})