9 lines
		
	
	
	
		
			184 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			184 B
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
from flask import Blueprint, render_template
 | 
						|
 | 
						|
 | 
						|
bp = Blueprint('dashboard', __name__, url_prefix='/dashboard')
 | 
						|
 | 
						|
@bp.route("/")
 | 
						|
def home():
 | 
						|
    return render_template('dashboard.html')
 |