@using Components.SvgComp
@if (currListOrderStatus != null) { @foreach (var item in currListOrderStatus) { @*
@if (int.Parse(item.Value) == CurrOrderStatus) {
@item.Label
} else { @if (int.Parse(item.Value) < CurrOrderStatus) {
@item.Label
} else {
@item.Label
} }
*@
@if (int.Parse(item.Value) == CurrOrderStatus) { } else { @if (int.Parse(item.Value) < CurrOrderStatus) { } else { } }
} }