From b7098c7b6cd23791501dfe130b105796df24cb32 Mon Sep 17 00:00:00 2001 From: Anton Kamalov Date: Tue, 5 Nov 2024 22:49:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B3=D0=B8=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=B0=D1=86=D0=B8=D1=8F=20=D0=B1=D0=BB=D1=8E=D0=BF=D1=80=D0=B8?= =?UTF-8?q?=D0=BD=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App/app.py | 2 ++ App/templates/main_menu.html | 1 + 2 files changed, 3 insertions(+) diff --git a/App/app.py b/App/app.py index 2941e4a..bcb9a28 100644 --- a/App/app.py +++ b/App/app.py @@ -1,6 +1,7 @@ from flask import Flask, render_template, session from Requests import requests_bp from Auth import auth_bp +from Report import report_bp import os, json app = Flask(__name__) @@ -13,6 +14,7 @@ app.config.update( app.register_blueprint(requests_bp, url_prefix='/requests') app.register_blueprint(auth_bp, url_prefix='/auth') +app.register_blueprint(report_bp, url_prefix='/report') @app.route('/') def index(): diff --git a/App/templates/main_menu.html b/App/templates/main_menu.html index 8e0a049..35b7d51 100644 --- a/App/templates/main_menu.html +++ b/App/templates/main_menu.html @@ -15,6 +15,7 @@ {% else %}