From a97c5567707c3e680210b8d70d5e0800bdddbf25 Mon Sep 17 00:00:00 2001 From: "soroush.asadi" Date: Tue, 23 Jun 2026 23:05:41 +0330 Subject: [PATCH] Show two rows of applicants on the homepage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump the homepage «کادر درمان آماده به کار» section from 3 to 6 latest talent listings, so it fills two rows of the grid-3 instead of one. Co-Authored-By: Claude Opus 4.8 --- src/JobsMedical.Web/Pages/Index.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JobsMedical.Web/Pages/Index.cshtml.cs b/src/JobsMedical.Web/Pages/Index.cshtml.cs index 6aac4f9..31adffc 100644 --- a/src/JobsMedical.Web/Pages/Index.cshtml.cs +++ b/src/JobsMedical.Web/Pages/Index.cshtml.cs @@ -52,7 +52,7 @@ public class IndexModel : PageModel .Where(t => t.Status == ShiftStatus.Open && t.CreatedAt >= JobsMedical.Web.Services.Scraping.ListingPolicy.TalentCutoffUtc) .OrderByDescending(t => t.CreatedAt) - .Take(3) + .Take(6) // two rows of the grid-3 «آماده به کار» section .ToListAsync(); Cities = await _db.Cities.Where(c => c.IsActive).OrderBy(c => c.Name).ToListAsync();