This commit is contained in:
2024-01-21 12:05:02 +01:00
parent ee80e7be55
commit efbd6cb670
5 changed files with 7 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ class Donator(json.JSONEncoder):
cur = conn.cursor() cur = conn.cursor()
cur.execute("""select name, sum(amount) from orders cur.execute("""select name, sum(amount) from orders
group by name group by name
order by sum(amount) desc
LIMIT 5 LIMIT 5
""") """)
data = cur.fetchall(); data = cur.fetchall();

View File

@@ -59,7 +59,7 @@ def index():
@app.route('/test') @app.route('/test')
def test(): def test():
p = Payment(int(random.random()*100),5000,'TEST DE MESSAGE BIEN LONG SKLDJQLKDJQLKSJDQLSKJDQLKJD','Nom donation') p = Payment(int(random.random()*100),0,'TEST DE MESSAGE BIEN LONG SKLDJQLKDJQLKSJDQLSKJDQLKJD','Test')
p.save(get_db()) p.save(get_db())
notify_client_payment(p) notify_client_payment(p)
return jsonify(p), 200 return jsonify(p), 200

View File

@@ -24,7 +24,7 @@ div {
</video> </video>
<div> <div>
<p class="donation-name">{{ Name }}</p> <p class="donation-name">{{ Name }}</p>
<p class="donation-amount">{{ Euro }}</p> <p class="donation-amount">{{ Euro }}</p>
<p class="donation-test">{{ Message }}</p> <p class="donation-text">{{ Message }}</p>
</div> </div>
</div> </div>

Binary file not shown.

View File

@@ -9,11 +9,12 @@ body {
.donation-name{ .donation-name{
font-style: bold; font-style: bold;
color: red; color: red;
font-size: 200%;
} }
.donation-text{ .donation-text{
font-style: bold; font-style: bold;
color: white; color: yellow;
} }
.donation-amount{ .donation-amount{