Count existing and new pool rows

This commit is contained in:
Eli Ribble 2026-02-09 19:17:33 +00:00
parent 515dbb54fa
commit f00436b136
No known key found for this signature in database
2 changed files with 21 additions and 10 deletions

View file

@ -30,7 +30,7 @@
<div class="col-md-4">
<div class="card summary-card h-100 border-primary">
<div class="card-body text-center">
<h1 class="display-4 text-primary">45</h1>
<h1 class="display-4 text-primary">{{ .Upload.CountExisting }}</h1>
<h5>Existing Pools</h5>
<p class="text-muted">Matches found in previous records</p>
</div>
@ -39,7 +39,7 @@
<div class="col-md-4">
<div class="card summary-card h-100 border-success">
<div class="card-body text-center">
<h1 class="display-4 text-success">23</h1>
<h1 class="display-4 text-success">{{ .Upload.CountNew }}</h1>
<h5>New Pools</h5>
<p class="text-muted">Not found in existing records</p>
</div>