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