From 49c5f57d8185f5b181ba4c6bfdb9cd553b5262f0 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Mon, 12 Feb 2024 16:34:54 -0800 Subject: [PATCH] limit 5 in table --- app/templates/views/dashboard/dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/dashboard/dashboard.html b/app/templates/views/dashboard/dashboard.html index 133b0a720..3ea62a273 100644 --- a/app/templates/views/dashboard/dashboard.html +++ b/app/templates/views/dashboard/dashboard.html @@ -55,7 +55,7 @@ {% if job_and_notifications %} - {% for job in job_and_notifications %} + {% for job in job_and_notifications[:5] %} {% if job.job_id and job.notifications %} {% set notification = job.notifications[0] %}