flask-python-helm/routes/dashboard.py
2020-09-11 21:02:04 +08:00

15 lines
304 B
Python

from flask import render_template
from . import routes
@routes.route('/')
def index():
return render_template('dashboard.html')
@routes.route('/dashboard')
def dashboard():
return render_template('dashboard.html')
@routes.route('/about')
def about():
return render_template('_about.html')