forked from rDrama/rDrama
1
0
Fork 0

more cosmetic fixes

master
Aevann 2024-03-10 20:35:46 +02:00
parent 7b13af6183
commit 9ef9d3fbca
2 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@ def notifications_chats(v):
criteria1 = (Chat.id == ChatMembership.chat_id, ChatMembership.user_id == v.id)
criteria2 = (Chat.id == ChatNotification.chat_id, ChatNotification.user_id == v.id)
chats = g.db.query(Chat, func.count(ChatNotification.chat_id)).join(ChatMembership, and_(*criteria1)).outerjoin(ChatNotification, and_(*criteria2)).group_by(Chat).order_by(func.count(ChatNotification.chat_id).desc(), Chat.name).all()
return render_template("notifications.html", v=v, chats=chats)
return render_template("notifications.html", v=v, notifications=chats)
@app.get("/notifications/modmail")
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)

View File

@ -62,9 +62,9 @@
<div class="notifs px-3 p-md-0">
{% if request.path == '/notifications/chats' %}
<table class="mt-4 ml-3">
<table class="mt-4 ml-md-3" style="max-width:1000px">
<tbody>
{% for chat, notif_count in chats %}
{% for chat, notif_count in notifications %}
<tr>
<td>
<a href="/chat/{{chat.id}}" style="text-decoration:none!important">