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)
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)