diff --git a/ui/easydiffusion/bucket_manager.py b/ui/easydiffusion/bucket_manager.py
index e4013dc5..5c30dc77 100644
--- a/ui/easydiffusion/bucket_manager.py
+++ b/ui/easydiffusion/bucket_manager.py
@@ -104,10 +104,11 @@ def init():
def get_all_images(db: Session = Depends(get_db)):
from easydiffusion.easydb.mappings import Image
images = db.query(Image).all()
- sum_string = ""
+ sum_string = "
"
for img in images:
options = f"Path: {img.path}\nPrompt: {img.prompt}\nNegative Prompt: {img.negative_prompt}\nSeed: {img.seed}\nModel: {img.use_stable_diffusion_model}\nSize: {img.height}x{img.width}\nSampler: {img.sampler_name}\nSteps: {img.num_inference_steps}\nGuidance Scale: {img.guidance_scale}\nLoRA: {img.lora}\nUpscaling: {img.use_upscale}\nFace Correction: {img.use_face_correction}\n"
sum_string += f"

"
+ sum_string += "
"
return Response(content=sum_string, media_type="text/html")
diff --git a/ui/index.html b/ui/index.html
index 0fcb807d..9f5547e2 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -49,6 +49,9 @@
Help & Community
+
+
+
@@ -455,6 +458,40 @@
+
+