@ChildContent
@if (OnlyZone != true)
{
int index = 0;
var transactionIndex = Container?.GetTransactionIndex() ?? -1;
var items = GetItems();
@if (AllowReorder == true)
{
@if (items.Any() == false)
{
}
else
{
if (transactionIndex == -1)
{
}
}
}
@foreach (var item in items)
{
var indexCopy = index;
@{
var renderer = GetItemTemplate();
}
@renderer(item)
if (transactionIndex == indexCopy && IsOrign(indexCopy) == false )
{
}
index++;
}
}