diff --git a/Views/Order/Details.cshtml b/Views/Order/Details.cshtml
index d945d67..d705462 100644
--- a/Views/Order/Details.cshtml
+++ b/Views/Order/Details.cshtml
@@ -18,7 +18,7 @@
@Localizer.Get("CreatedOn"): @Model.CreatedAt.ToString("g")
@if (!string.IsNullOrEmpty(Model.ImagePath))
{
-
+
}
@if (!string.IsNullOrEmpty(Model.AdditionalInfo))
{
diff --git a/Views/Order/Join.cshtml b/Views/Order/Join.cshtml
index a76fe27..c3d8673 100644
--- a/Views/Order/Join.cshtml
+++ b/Views/Order/Join.cshtml
@@ -18,7 +18,7 @@
@if (!string.IsNullOrEmpty(Model.ImagePath))
{
-
+
}
@if (!string.IsNullOrEmpty(Model.AdditionalInfo))
@@ -54,7 +54,7 @@
@foreach (var item in Model.MenuItems)
{
-
+
}
@@ -65,7 +65,7 @@
- @Localizer["Total"]: $0.00
+ @Localizer["Total"]: @Html.Raw(Localizer["Currency", "0.00"])
@@ -104,7 +104,7 @@
@orderItem.ParticipantName |
@orderItem.MenuItem?.Name |
@orderItem.Quantity |
- $@((orderItem.MenuItem?.Price * orderItem.Quantity ?? 0).ToString("F2")) |
+ @Localizer["Currency", (orderItem.MenuItem?.Price * orderItem.Quantity ?? 0).ToString("F2")] |
}
@@ -125,7 +125,7 @@
{
| @person.Key |
- $@person.Sum(oi => oi.MenuItem.Price * oi.Quantity).ToString("F2") |
+ @Localizer["Currency", person.Sum(oi => oi.MenuItem.Price * oi.Quantity).ToString("F2")] |
}
@@ -142,7 +142,7 @@
@Localizer["OrderTotal"]
- $@Model.OrderItems.Sum(oi => oi.MenuItem.Price * oi.Quantity).ToString("F2")
+ @Localizer["Currency", Model.OrderItems.Sum(oi => oi.MenuItem.Price * oi.Quantity).ToString("F2")]