Made report header partial view which includes report title and date pulled to be included in each report.
This commit is contained in:
@ -21,18 +21,12 @@
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Daily Passdown | Mesa Reporting Services";
|
||||
ViewData["ReportTitle"] = "Daily Report";
|
||||
}
|
||||
|
||||
<partial name="_BreadCrumbs" />
|
||||
|
||||
<div class="text-center">
|
||||
<h2>Daily Report</h2>
|
||||
<br /><br />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<p class="text-end fw-bold">Date Pulled: @DateTime.Now</p>
|
||||
</div>
|
||||
<partial name="_ReportHeader" />
|
||||
|
||||
<button class="btn btn-outline-dark float-start dailyReportTable" onclick="toggleWeek()">View Previous Week</button>
|
||||
<button class="btn btn-outline-dark float-end dailyReportTable hidden" onclick="toggleWeek()">View Current Week</button>
|
||||
|
@ -2,12 +2,13 @@
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Hold Lot Report | Mesa Reporting Services";
|
||||
ViewData["ReportTitle"] = "Hold Lot Report";
|
||||
}
|
||||
|
||||
<partial name="_BreadCrumbs" />
|
||||
|
||||
<h1 class="text-center">Hold Lots</h1>
|
||||
<br /><br />
|
||||
<partial name="_ReportHeader" />
|
||||
|
||||
<table class="table text-center" id="sortTable">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Open NCR Report | Mesa Reporting Services";
|
||||
ViewData["ReportTitle"] = "Open NCR Report";
|
||||
}
|
||||
|
||||
<partial name="_BreadCrumbs" />
|
||||
|
||||
<h1 class="text-center">Open NCRs</h1>
|
||||
<br />
|
||||
<br />
|
||||
<partial name="_ReportHeader" />
|
||||
|
||||
<table class="table text-center" id="sortTable">
|
||||
<thead>
|
||||
<tr>
|
||||
|
Reference in New Issue
Block a user