Fix gravatar hovercards, and add trade_offer image generation with playwright, for use with opengraph tags on trade_offer_detal.html

This commit is contained in:
badblocks 2025-03-20 23:59:22 -07:00
parent 4c0db9f842
commit f3a1366269
16 changed files with 372 additions and 123 deletions

View file

@ -1,4 +1,4 @@
# Generated by Django 5.1.2 on 2025-03-17 20:39
# Generated by Django 5.1.2 on 2025-03-20 00:08
import django.contrib.auth.models
import django.contrib.auth.validators

View file

@ -21,7 +21,7 @@ def gravatar_url(email, size=20):
Returns the Gravatar URL for a given email. The URL includes parameters
for the default image and the size.
"""
default = "wavatar"
default = "retro"
email_hash = gravatar_hash(email)
params = urlencode({'d': default, 's': str(size)})
return f"https://www.gravatar.com/avatar/{email_hash}?{params}"