Cleaned up code

This commit is contained in:
Luke Else 2024-02-06 20:11:04 +00:00
parent 7ebeb10cda
commit b49022f7f9
2 changed files with 2 additions and 3 deletions

View File

@ -19,7 +19,7 @@ def index():
return render_template("index.html", content="stats.html", data=test)
@blueprint.route('/product/<int:id>')
@blueprint.route('/products/<int:id>')
def view_product_stats(id: int):
""" Page to view statistics for a given product """
db = StatsController()
@ -42,7 +42,7 @@ def view_product_stats(id: int):
)
@blueprint.route('/user/<int:id>')
@blueprint.route('/users/<int:id>')
def view_user_stats(id: int):
""" Page to view statistics for a given user """
db = StatsController()

View File

@ -5,7 +5,6 @@ from flask import Blueprint
from flask import render_template, redirect, request, session, flash
from controllers.database.user import UserController
from models.users.user import User
from models.users.customer import Customer
from models.users.seller import Seller
from hashlib import sha512