Made report header partial view which includes report title and date pulled to be included in each report.

This commit is contained in:
Daniel Wathen
2023-01-26 15:16:43 -07:00
parent c8d712bf8d
commit c11de01602
5 changed files with 19 additions and 15 deletions

View File

@ -0,0 +1,8 @@
<div class="text-center">
<h2>@ViewData["ReportTitle"].ToString()</h2>
<br /><br />
</div>
<div>
<p class="text-end fw-bold">Date Pulled: @DateTime.Now</p>
</div>