client laying and bedding in ui added

This commit is contained in:
2026-01-17 17:33:07 +05:30
parent 8cba86323e
commit 0007d6e87d
2 changed files with 10 additions and 2 deletions

View File

@@ -33,7 +33,7 @@
</form>
</div>
{% if tables.tr or tables.mh or tables.dc %}
{% if tables.tr or tables.mh or tables.dc or tables.laying %}
<div class="card shadow-sm p-3">
<h4 class="mb-3">Comparison Preview</h4>
@@ -50,6 +50,9 @@
<button class="nav-link" id="dc-tab" data-bs-toggle="tab" data-bs-target="#dc" type="button">MH & DC
Comparison</button>
</li>
<li class="nav-item">
<button class="nav-link" id="laying-tab" data-bs-toggle="tab" data-bs-target="#laying" type="button">Laying
& Bedding Comparison</button>
</ul>
<div class="tab-content mt-3" id="reportTabsContent">
@@ -68,6 +71,11 @@
{{ tables.dc|safe }}
</div>
</div>
<div class="tab-pane fade" id="laying" role="tabpanel">
<div class="table-responsive" style="max-height: 500px;">
{{ tables.laying|safe }}
</div>
</div>
</div>
{% endif %}