Add new admin blueprint with new user delete feature. Reorganize templates etc.

This commit is contained in:
Stephan Porada
2019-08-15 15:56:53 +02:00
parent 93330c0efb
commit bccf661957
8 changed files with 134 additions and 15 deletions

View File

@ -33,6 +33,9 @@ def create_app(config_name):
from .main import main as main_blueprint
app.register_blueprint(main_blueprint)
from .admin import admin as admin_blueprint
app.register_blueprint(admin_blueprint, url_prefix='/admin')
return app