21 lines
457 B
Python
21 lines
457 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
:author: luffmims
|
|
:url: http://yum2.cc
|
|
:copyright: © 2025 luffmims <luffmims@hotmaill.com>
|
|
:license: MIT, see LICENSE for more details.
|
|
"""
|
|
from flask import render_template
|
|
|
|
from inventory_check import app
|
|
|
|
|
|
@app.errorhandler(404)
|
|
def page_not_found(e):
|
|
return render_template('errors/404.html'), 404
|
|
|
|
|
|
@app.errorhandler(500)
|
|
def internal_server_error(e):
|
|
return render_template('errors/500.html'), 500
|