A corporation manager and dashboard for EVE Online
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

19 rindas
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()