Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

24 lines
388B

  1. from flask import Blueprint, render_template, request
  2. from modules import cbpi
  3. react = Blueprint('react', __name__, template_folder='templates', static_folder='static')
  4. @cbpi.initalizer(order=10)
  5. def init(cbpi):
  6. print "INITIALIZE UI"
  7. cbpi.app.register_blueprint(react, url_prefix='/ui')
  8. @react.route('/')
  9. def index():
  10. return react.send_static_file("index.html")