Пример #1
0
def mail_index():
    acc = evelink.account.Account(g.api)
    char = Character().from_api(g.char_id)
    char.mails_from_api()
    return render_template("mail_index.html", char=char)
Пример #2
0
def character_index():
    acc = evelink.account.Account(g.api)
    char = Character().from_api(g.char_id)
    char.skill_sheet_from_api()
    return render_template("character_sheet.html", char=char)