some more ui work
This commit is contained in:
14
src/applets/install/routes.py
Normal file
14
src/applets/install/routes.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from applets.install import bp
|
||||
from flask import Flask, request, session, redirect, \
|
||||
url_for, render_template, flash, Blueprint
|
||||
from flask import current_app
|
||||
|
||||
@bp.route('/install',methods=['GET', 'POST', 'PUT'])
|
||||
def install_index():
|
||||
"""
|
||||
The page you'd get if you access the root of
|
||||
this app in a browser.
|
||||
"""
|
||||
return render_template('install.html')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user