示例#1
0
def locky():
    return HTML("locky.html")
示例#2
0
def mes():
    return HTML("mes.html")
示例#3
0
def admin_settings():
    return HTML("admin/settings.html")
示例#4
0
def all_tweets(page_num):
    tweets = tweet_mod.TweetModel.get_paginate(50, page_num)
    return HTML("live/all_tweets.html", tweets=tweets)
示例#5
0
def page_not_found(e):
    return HTML("404.html")
示例#6
0
def admin_analysis():
    return HTML("admin/analysis.html")
示例#7
0
def mes_route():
    return HTML("mes.html")
示例#8
0
def th3pl4gu3():
    return HTML("th3pl4gu3.html")
示例#9
0
def fortweet_route():
    return HTML("fortweet.html")
示例#10
0
def locky_route():
    return HTML("locky.html")
示例#11
0
def checkpoint_route():
    return HTML("checkpoint.html")
示例#12
0
def ansible_route():
    return HTML("ansible.html")
示例#13
0
def index():
    return HTML("index.html")
示例#14
0
def mesg():
    return HTML("mesg.html")
示例#15
0
def mesg_route():
    return HTML("mesg.html")
示例#16
0
def fortweet():
    return HTML("fortweet.html")
示例#17
0
def prometheus_route():
    return HTML("prometheus.html")
示例#18
0
def prometheus():
    return HTML("prometheus.html")
示例#19
0
def index():
    return HTML("index.html", age=Utils.get_age())
示例#20
0
def admin_dashboard():
    return HTML("admin/dashboard.html")
示例#21
0
def ansible_automation():
    return HTML("ansible.html")
示例#22
0
def admin_manage():
    return HTML("admin/admins.html", admins=admin_mod.AdminModel.get_all())
示例#23
0
def checkpoint_automation():
    return HTML("checkpoint.html")
示例#24
0
def admin_add_get():
    return HTML("admin/admin_add.html")
示例#25
0
def live_view():
    return HTML("live/index.html")