feat/admin: use image thumbs

This commit is contained in:
Kentai Radiquum 2025-02-18 21:29:04 +05:00
parent 0c7823dba5
commit 01124ba834
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -56,7 +56,9 @@ def Home():
for object in db_objects: for object in db_objects:
name = object.id name = object.id
img = f"{object.id.split(".")[0]}/{object.id}" path = name.split('.')[0]
ext = name.split('.')[-1]
img = f"{path}/{path}-512.{ext}"
obj = object.to_dict() obj = object.to_dict()
date = datetime.fromtimestamp(float(float(str(obj["date"])[:10]))).strftime( date = datetime.fromtimestamp(float(float(str(obj["date"])[:10]))).strftime(
@ -235,7 +237,9 @@ def Edit(id):
document = db.collection(os.getenv("PREFIX")).document(id).get() document = db.collection(os.getenv("PREFIX")).document(id).get()
if document.exists: if document.exists:
name = document.id name = document.id
img = f"{document.id.split(".")[0]}/{document.id}" path = name.split('.')[0]
ext = name.split('.')[-1]
img = f"{path}/{path}-512.{ext}"
obj = document.to_dict() obj = document.to_dict()
tags = obj["tags"] tags = obj["tags"]