diff --git a/Elwig/Documents/DeliveryConfirmation.cshtml b/Elwig/Documents/DeliveryConfirmation.cshtml index 8131765..b2e2f63 100644 --- a/Elwig/Documents/DeliveryConfirmation.cshtml +++ b/Elwig/Documents/DeliveryConfirmation.cshtml @@ -73,8 +73,12 @@ } else { } + @if (i == bins.Length - 1) { + @($"{p.Weight:N0}") + } else { + + } @if (first) { - @($"{p.Weight:N0}") first = false; } @@ -84,7 +88,7 @@ } Gesamt: - @($"{Model.Deliveries.Sum(p => p.Weight):N0}") + @($"{Model.Deliveries.Sum(p => p.Weight):N0}")