mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
31 lines
992 B
Python
31 lines
992 B
Python
from flask import render_template, request
|
|
from flask_login import login_required, current_user
|
|
|
|
from app.dashboard.base import dashboard_bp
|
|
from app.models import EmailLog
|
|
|
|
|
|
@dashboard_bp.route("/refused_email", methods=["GET", "POST"])
|
|
@login_required
|
|
def refused_email_route():
|
|
# Highlight a refused email
|
|
highlight_id = request.args.get("highlight_id")
|
|
if highlight_id:
|
|
highlight_id = int(highlight_id)
|
|
|
|
email_logs: [EmailLog] = EmailLog.query.filter(
|
|
EmailLog.user_id == current_user.id, EmailLog.refused_email_id != None
|
|
).order_by(EmailLog.id.desc()).all()
|
|
|
|
# make sure the highlighted email_log is the first email_log
|
|
highlight_index = None
|
|
for ix, email_log in enumerate(email_logs):
|
|
if email_log.id == highlight_id:
|
|
highlight_index = ix
|
|
break
|
|
|
|
if highlight_index:
|
|
email_logs.insert(0, email_logs.pop(highlight_index))
|
|
|
|
return render_template("dashboard/refused_email.html", **locals())
|