Move the admin interface back to a blueprint
parent
914427f852
commit
974c351802
@ -0,0 +1,6 @@
|
||||
from flask import Blueprint
|
||||
|
||||
|
||||
ui = Blueprint('ui', __name__, static_folder='static', template_folder='templates')
|
||||
|
||||
from mailu.ui.views import *
|
@ -1,4 +1,5 @@
|
||||
from mailu import db, models, forms
|
||||
from mailu import db, models
|
||||
from mailu.ui import forms
|
||||
|
||||
import flask
|
||||
import flask_login
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue