mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 15:54:31 +00:00
feat/admin: use image thumbs
This commit is contained in:
parent
0c7823dba5
commit
01124ba834
1 changed files with 6 additions and 2 deletions
|
@ -56,7 +56,9 @@ def Home():
|
|||
|
||||
for object in db_objects:
|
||||
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()
|
||||
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()
|
||||
if document.exists:
|
||||
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()
|
||||
tags = obj["tags"]
|
||||
|
|
Loading…
Add table
Reference in a new issue