Show dashboard numbers with commas for readability
This commit is contained in:
parent
e6a90631ff
commit
942fc42d5f
2 changed files with 21 additions and 3 deletions
|
|
@ -99,7 +99,7 @@ body {
|
|||
<i class="fas fa-ticket-alt"></i>
|
||||
</div>
|
||||
<h5 class="card-title">Service Requests</h5>
|
||||
<p class="metric-value">{{ .CountServiceRequests }}</p>
|
||||
<p class="metric-value">{{ .CountServiceRequests | bigNumber }}</p>
|
||||
<p class="card-text text-muted">
|
||||
<span class="text-success">
|
||||
<i class="fas fa-arrow-up"></i> 12%
|
||||
|
|
@ -117,7 +117,7 @@ body {
|
|||
<i class="fas fa-bug"></i>
|
||||
</div>
|
||||
<h5 class="card-title">Mosquito Sources</h5>
|
||||
<p class="metric-value">{{ .CountMosquitoSources }}</p>
|
||||
<p class="metric-value">{{ .CountMosquitoSources | bigNumber }}</p>
|
||||
<p class="card-text text-muted">
|
||||
<span class="text-danger">
|
||||
<i class="fas fa-arrow-up"></i> 8%
|
||||
|
|
@ -135,7 +135,7 @@ body {
|
|||
<i class="fas fa-clipboard-check"></i>
|
||||
</div>
|
||||
<h5 class="card-title">Inspections</h5>
|
||||
<p class="metric-value">{{ .CountInspections }}</p>
|
||||
<p class="metric-value">{{ .CountInspections | bigNumber }}</p>
|
||||
<p class="card-text text-muted">
|
||||
<span class="text-success">
|
||||
<i class="fas fa-arrow-up"></i> 15%
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue