A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
448 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 map page."""
  6. return render_template("map/map.mako")
  7. def navitem():
  8. """Render and return the navigation item for this module."""
  9. return render_template("map/navitem.mako").decode("utf8")
  10. @blueprint.rroute("/map")
  11. def map():
  12. """Render and return the main map page."""
  13. return home()