diff --git a/Views/Vehicle/_ReminderRecords.cshtml b/Views/Vehicle/_ReminderRecords.cshtml
index 483858f..0d23c88 100644
--- a/Views/Vehicle/_ReminderRecords.cshtml
+++ b/Views/Vehicle/_ReminderRecords.cshtml
@@ -36,7 +36,7 @@
-

+
@@ -105,6 +105,11 @@
}
+
+ |
+ @StaticHelper.ReportNote
+ |
+
diff --git a/Views/Vehicle/_ServiceRecords.cshtml b/Views/Vehicle/_ServiceRecords.cshtml
index 2e632d8..cb23ce8 100644
--- a/Views/Vehicle/_ServiceRecords.cshtml
+++ b/Views/Vehicle/_ServiceRecords.cshtml
@@ -101,7 +101,7 @@
-

+
@@ -143,6 +143,11 @@
}
}
+
+ |
+ @StaticHelper.ReportNote
+ |
+
diff --git a/Views/Vehicle/_SupplyRecords.cshtml b/Views/Vehicle/_SupplyRecords.cshtml
index cbb6cac..e4586eb 100644
--- a/Views/Vehicle/_SupplyRecords.cshtml
+++ b/Views/Vehicle/_SupplyRecords.cshtml
@@ -113,7 +113,7 @@
-

+
@@ -161,6 +161,11 @@
}
}
+
+ |
+ @StaticHelper.ReportNote
+ |
+
diff --git a/Views/Vehicle/_TaxRecords.cshtml b/Views/Vehicle/_TaxRecords.cshtml
index b081f15..46b11b6 100644
--- a/Views/Vehicle/_TaxRecords.cshtml
+++ b/Views/Vehicle/_TaxRecords.cshtml
@@ -95,7 +95,7 @@
-

+
@@ -137,6 +137,11 @@
}
}
+
+ |
+ @StaticHelper.ReportNote
+ |
+
diff --git a/Views/Vehicle/_UpgradeRecords.cshtml b/Views/Vehicle/_UpgradeRecords.cshtml
index 7bf74a8..20048a5 100644
--- a/Views/Vehicle/_UpgradeRecords.cshtml
+++ b/Views/Vehicle/_UpgradeRecords.cshtml
@@ -101,7 +101,7 @@
-

+
@@ -145,6 +145,11 @@
}
}
+
+ |
+ @StaticHelper.ReportNote
+ |
+
diff --git a/Views/Vehicle/_VehicleHistory.cshtml b/Views/Vehicle/_VehicleHistory.cshtml
index 794e99f..3d3b8bc 100644
--- a/Views/Vehicle/_VehicleHistory.cshtml
+++ b/Views/Vehicle/_VehicleHistory.cshtml
@@ -10,7 +10,7 @@
-

+
@translator.Translate(userLanguage, "Vehicle Maintenance Report")
@@ -107,19 +107,19 @@
- | @translator.Translate(userLanguage, "Type") |
- @translator.Translate(userLanguage, "Date") |
- @translator.Translate(userLanguage, "Odometer") |
- @translator.Translate(userLanguage, "Description") |
- @translator.Translate(userLanguage, "Cost") |
- @translator.Translate(userLanguage, "Notes") |
+ @translator.Translate(userLanguage, "Type") |
+ @translator.Translate(userLanguage, "Date") |
+ @translator.Translate(userLanguage, "Odometer") |
+ @translator.Translate(userLanguage, "Description") |
+ @translator.Translate(userLanguage, "Cost") |
+ @translator.Translate(userLanguage, "Notes") |
@foreach (GenericReportModel reportData in Model.VehicleHistory)
{
- |
+ |
@if (reportData.DataType == ImportMode.ServiceRecord)
{
@translator.Translate(userLanguage, "Service")
@@ -137,13 +137,18 @@
@translator.Translate(userLanguage, "Tax")
}
|
- @reportData.Date.ToShortDateString() |
- @(reportData.Odometer == default ? "---" : reportData.Odometer.ToString("N0")) |
- @reportData.Description |
- @((hideZero && reportData.Cost == default) ? "---" : reportData.Cost.ToString("C")) |
- @StaticHelper.TruncateStrings(reportData.Notes, 100) |
+ @reportData.Date.ToShortDateString() |
+ @(reportData.Odometer == default ? "---" : reportData.Odometer.ToString("N0")) |
+ @reportData.Description |
+ @((hideZero && reportData.Cost == default) ? "---" : reportData.Cost.ToString("C")) |
+ @StaticHelper.TruncateStrings(reportData.Notes, 100) |
}
+
+ |
+ @StaticHelper.ReportNote
+ |
+
diff --git a/wwwroot/css/site.css b/wwwroot/css/site.css
index 196aeb0..01ca0be 100644
--- a/wwwroot/css/site.css
+++ b/wwwroot/css/site.css
@@ -107,25 +107,6 @@ html {
background-color: #fff !important;
}
- td.col-1 {
- width: 10%;
- }
-
- td.col-4.text-wrap {
- width: 30%;
- }
-
- .col-2.servicehistorytype {
- width: 13%;
- }
- .col-1.servicehistorydate{
- width: 13%;
- }
-
- th.col-1 {
- width: 10%;
- }
-
th {
color: #000 !important;
background-color: #fff !important;
@@ -467,6 +448,17 @@ html[data-bs-theme="light"] .api-method:hover {
padding: 0rem;
}
+.lubelogger-logo {
+ height: 48px;
+ object-fit: scale-down;
+ pointer-events: none;
+}
+
::-ms-reveal {
display: none;
+}
+
+.lubelogger-report-banner {
+ border-top: thin solid black;
+ text-align: center;
}
\ No newline at end of file