20 lines
816 B
Python
20 lines
816 B
Python
# coding:utf-8
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# MW-Linux面板
|
|
# ---------------------------------------------------------------------------------
|
|
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
|
|
# ---------------------------------------------------------------------------------
|
|
# Author: midoks <midoks@163.com>
|
|
# ---------------------------------------------------------------------------------
|
|
|
|
|
|
from flask import Blueprint, render_template
|
|
|
|
from admin.user_login_check import panel_login_required
|
|
|
|
blueprint = Blueprint('soft', __name__, url_prefix='/soft', template_folder='../../templates')
|
|
@blueprint.route('/index', endpoint='index')
|
|
@panel_login_required
|
|
def index():
|
|
return render_template('default/soft.html') |