def index(): return render_template('index.html')
def strategies(): g.title = "储贺投资 - 策略表现" g.tab_strategies = "active" return render_template('strategies.html')
def xwlb(): g.title = "储贺投资 - 特色数据 - xwlb统计" g.tab_strategies = "active" return render_template('xwlb.html')
def products(): g.title = "储贺投资 - 产品表现" g.tab_products = "active" return render_template('products.html')
def position_detail(): g.title = "储贺投资 - 仓位数据" g.tab_position_detail = "active" return render_template('position_detail.html')
def page_not_found(e): g.title = "Error - 404" # note that we set the 404 status explicitly return render_template('404.html'), 404
def login(): return render_template('login.html')
def forgot_password(): return render_template('forgot-password.html')
def register(): return render_template('register.html')
def dashbaord(): g.title = "储贺投资 - 管理后台" g.tab_dashboard = "active" return render_template('dashboard.html')