mirror of https://github.com/midoks/mdserver-web
parent
76199a20a4
commit
b92cfdeade
@ -0,0 +1,17 @@ |
|||||||
|
# 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 |
||||||
|
|
||||||
|
blueprint = Blueprint('control', __name__, url_prefix='/control', template_folder='../../templates/default') |
||||||
|
@blueprint.route('/index', endpoint='index') |
||||||
|
def index(): |
||||||
|
return render_template('control.html', data={}) |
@ -0,0 +1,17 @@ |
|||||||
|
# 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 |
||||||
|
|
||||||
|
blueprint = Blueprint('crontab', __name__, url_prefix='/crontab', template_folder='../../templates/default') |
||||||
|
@blueprint.route('/index', endpoint='index') |
||||||
|
def index(): |
||||||
|
return render_template('crontab.html', data={}) |
@ -0,0 +1,17 @@ |
|||||||
|
# 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 |
||||||
|
|
||||||
|
blueprint = Blueprint('firewall', __name__, url_prefix='/firewall', template_folder='../../templates/default') |
||||||
|
@blueprint.route('/index', endpoint='index') |
||||||
|
def index(): |
||||||
|
return render_template('firewall.html', data={}) |
@ -0,0 +1,17 @@ |
|||||||
|
# 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 |
||||||
|
|
||||||
|
blueprint = Blueprint('plugins', __name__, url_prefix='/plugins', template_folder='../../templates/default') |
||||||
|
@blueprint.route('/index', endpoint='index') |
||||||
|
def index(): |
||||||
|
return render_template('plugins.html', data={}) |
@ -0,0 +1,17 @@ |
|||||||
|
# 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 |
||||||
|
|
||||||
|
blueprint = Blueprint('soft', __name__, url_prefix='/soft', template_folder='../../templates/default') |
||||||
|
@blueprint.route('/index', endpoint='index') |
||||||
|
def index(): |
||||||
|
return render_template('soft.html', data={}) |
Loading…
Reference in new issue