diff --git a/README.md b/README.md index 62b7612..0856ce5 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@ Because nobody should have to deal with a homemade spreadsheet or a shoebox full ## Docker Setup (Recommended) 1. Install Docker 2. Clone this repo -2.5 CHECK culture in Dockerfile, default is en_US -3. Run `docker build -t lubelogger -f Dockerfile .` -4. CHECK docker-compose.yml and make sure the mounting directories look correct. -5. If not using traefik, use docker-compose-notraefik.yml -5. Run `docker-compose up` +3. CHECK culture in Dockerfile, default is en_US +4. Run `docker build -t lubelogger -f Dockerfile .` +5. CHECK docker-compose.yml and make sure the mounting directories look correct. +6. If not using traefik, use docker-compose-notraefik.yml +7. Run `docker-compose up` ## Additional Docker Instructions diff --git a/Views/Vehicle/_Gas.cshtml b/Views/Vehicle/_Gas.cshtml index 6bd9366..e9bbb1b 100644 --- a/Views/Vehicle/_Gas.cshtml +++ b/Views/Vehicle/_Gas.cshtml @@ -53,9 +53,9 @@ Date Refueled Odometer(@(useMPG ? "mi." : "km")) Consumption(@(consumptionUnit)) - Fuel Economy(@(fuelEconomyUnit)) - Cost - Unit Cost + Fuel Economy(@(fuelEconomyUnit)) + Cost + Unit Cost @@ -65,9 +65,9 @@ @gasRecord.Date @gasRecord.Mileage @gasRecord.Gallons.ToString("F") - @(gasRecord.MilesPerGallon == 0 ? "---" : gasRecord.MilesPerGallon.ToString("F")) - @gasRecord.Cost.ToString("C") - @gasRecord.CostPerGallon.ToString("C") + @(gasRecord.MilesPerGallon == 0 ? "---" : gasRecord.MilesPerGallon.ToString("F")) + @gasRecord.Cost.ToString("C") + @gasRecord.CostPerGallon.ToString("C") }