23 lines
685 B
PHP
23 lines
685 B
PHP
<?php // phpcs:ignoreFile ?>
|
|
<div class="production-card h-100">
|
|
<div class="production-card-header">
|
|
<span class="metric-badge">Scale</span>
|
|
<h3 class="mb-2">Scale intake</h3>
|
|
<p class="small text-muted mb-0">Totals reflect posted tickets from the scale house.</p>
|
|
</div>
|
|
<dl class="production-stats">
|
|
<div class="stat-row">
|
|
<dt>Tons in today</dt>
|
|
<dd><?php include 'inc/tonsin.php'; ?> tons</dd>
|
|
</div>
|
|
<div class="stat-row">
|
|
<dt>Previous day intake</dt>
|
|
<dd><?php include 'inc/tonsinprev.php'; ?> tons</dd>
|
|
</div>
|
|
<div class="stat-row">
|
|
<dt>Total tons year-to-date</dt>
|
|
<dd><?php include 'inc/tonsintot.php'; ?> tons</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|