A corporation manager and dashboard for EVE Online
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

19 行
462 B

  1. # -*- coding: utf-8 -*-
  2. from flask_mako import render_template
  3. from ._provided import blueprint
  4. def home():
  5. """Render and return the main intel page."""
  6. return render_template("intel/intel.mako")
  7. def navitem():
  8. """Render and return the navigation item for this module."""
  9. return render_template("intel/navitem.mako").decode("utf8")
  10. @blueprint.rroute("/intel")
  11. def intel():
  12. """Render and return the main intel page."""
  13. return home()