29 lines
494 B
Plaintext
29 lines
494 B
Plaintext
|
@foreach (var pizza in Order.Pizzas)
|
||
|
{
|
||
|
<p>
|
||
|
<strong>
|
||
|
@(pizza.Size)"
|
||
|
@pizza.Special.Name
|
||
|
(€@pizza.GetFormattedTotalPrice())
|
||
|
</strong>
|
||
|
</p>
|
||
|
|
||
|
<ul>
|
||
|
@foreach (var topping in pizza.Toppings)
|
||
|
{
|
||
|
<li>+ @topping.Topping.Name</li>
|
||
|
}
|
||
|
</ul>
|
||
|
}
|
||
|
|
||
|
<p>
|
||
|
<strong>
|
||
|
Gesamt:
|
||
|
€@Order.GetFormattedTotalPrice()
|
||
|
</strong>
|
||
|
</p>
|
||
|
|
||
|
@code {
|
||
|
[Parameter] public Order Order { get; set; }
|
||
|
}
|