diff --git a/App/Waybill/__init__.py b/App/Waybill/__init__.py new file mode 100644 index 0000000..c91ca76 --- /dev/null +++ b/App/Waybill/__init__.py @@ -0,0 +1,9 @@ +from flask import request, Blueprint, render_template, session, current_app, redirect, url_for +from checker import check_auth +waybill_bp = Blueprint('waybill_bp', __name__, template_folder='templates') + +@waybill_bp.route('/', methods=['GET', 'POST']) +@check_auth +def waybill(): + if request.method == 'GET': + return render_template('waybill.html') \ No newline at end of file diff --git a/App/Waybill/templates/waybill.html b/App/Waybill/templates/waybill.html new file mode 100644 index 0000000..f81ea5c --- /dev/null +++ b/App/Waybill/templates/waybill.html @@ -0,0 +1,10 @@ + + +
+ +