A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

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