Fix empty state showing Create First button when a filter is active

Jobs: use AllJobCount (global total) to distinguish truly-empty from
filter-returned-nothing; show Clear Filters button in the latter case.
Quotes: expand the filter-active check to include tagFilter and statusCode,
which were missing from the condition.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-10 14:20:20 -04:00
parent 750e1b1c5b
commit d92266b027
2 changed files with 30 additions and 10 deletions
+28 -8
View File
@@ -162,10 +162,20 @@
<div class="text-center py-5">
<i class="bi bi-inbox" style="font-size: 4rem; color: #d1d5db;"></i>
<h5 class="mt-3 text-muted">No jobs found</h5>
<p class="text-muted mb-4">Get started by creating your first job</p>
<a asp-action="Create" class="btn btn-primary">
<i class="bi bi-plus-circle me-2"></i>Create Your First Job
</a>
@if (_allCount > 0)
{
<p class="text-muted mb-4">No jobs match your current filter.</p>
<a href="@Url.Action("Index", new { statusGroup = "active" })" class="btn btn-outline-secondary">
<i class="bi bi-x-circle me-2"></i>Clear Filters
</a>
}
else
{
<p class="text-muted mb-4">Get started by creating your first job.</p>
<a asp-action="Create" class="btn btn-primary">
<i class="bi bi-plus-circle me-2"></i>Create Your First Job
</a>
}
</div>
}
else
@@ -328,10 +338,20 @@
<div class="text-center py-5">
<i class="bi bi-inbox" style="font-size: 4rem; color: #d1d5db;"></i>
<h5 class="mt-3 text-muted">No jobs found</h5>
<p class="text-muted mb-4">Get started by creating your first job</p>
<a asp-action="Create" class="btn btn-primary">
<i class="bi bi-plus-circle me-2"></i>Create Your First Job
</a>
@if (_allCount > 0)
{
<p class="text-muted mb-4">No jobs match your current filter.</p>
<a href="@Url.Action("Index", new { statusGroup = "active" })" class="btn btn-outline-secondary">
<i class="bi bi-x-circle me-2"></i>Clear Filters
</a>
}
else
{
<p class="text-muted mb-4">Get started by creating your first job.</p>
<a asp-action="Create" class="btn btn-primary">
<i class="bi bi-plus-circle me-2"></i>Create Your First Job
</a>
}
</div>
}
else
@@ -294,9 +294,9 @@
<div class="text-center py-5">
<i class="bi bi-file-text" style="font-size: 4rem; color: #ccc;"></i>
<p class="text-muted mt-3">No quotes found.</p>
@if (!string.IsNullOrEmpty(searchTerm) || statusFilter.HasValue)
@if (!string.IsNullOrEmpty(searchTerm) || statusFilter.HasValue || !string.IsNullOrEmpty(statusCode) || !string.IsNullOrEmpty(ViewBag.TagFilter as string))
{
<p class="text-muted">Try adjusting your filters or <a asp-action="Index" asp-controller="Quotes">view all quotes</a>.</p>
<p class="text-muted">No quotes match your current filter. <a asp-action="Index" asp-controller="Quotes">View all quotes</a>.</p>
}
else
{