This commit is contained in:
Mateusz Gruszczyński
2026-03-13 11:03:13 +01:00
commit 35571df778
132 changed files with 11197 additions and 0 deletions

View File

View File

@@ -0,0 +1,12 @@
from flask import Blueprint, render_template
from flask_login import login_required
from app.models.invoice import NotificationLog
bp = Blueprint('notifications', __name__, url_prefix='/notifications')
@bp.route('/')
@login_required
def index():
logs = NotificationLog.query.order_by(NotificationLog.created_at.desc()).limit(100).all()
return render_template('notifications/index.html', logs=logs)