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