Initial commit

This commit is contained in:
Anton Kamalov
2024-10-21 22:42:14 +03:00
commit 19a5869d30
14 changed files with 228 additions and 0 deletions

11
App/Queries/req.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import request, Blueprint, render_template, session, redirect, url_for
from os import path
from db.sql_provider import SQLProvider
sql_provider = SQLProvider(path.join(path.dirname(__file__), 'sql'))
requests_bp = Blueprint('requests_bp', __name__, template_folder='templates')
@requests_bp.route('/', methods=['GET', 'POST'])
def sklad_zapros():
if request.method == 'GET':
return render_template('sklad_zapros.html')