10 lines
256 B
Python
10 lines
256 B
Python
from flask import Blueprint, flash, g, redirect, render_template, request, session, url_for
|
|
|
|
from www.db import get_db
|
|
|
|
bp = Blueprint('admin', __name__, url_prefix='/admin')
|
|
|
|
@bp.route('/panel')
|
|
def panel():
|
|
return render_template('admin/panel.html')
|