Not Prioritized
@if (notPrioritizedItemList != null && notPrioritizedItemList.list != null) {
@for (item of notPrioritizedItemList.list; track item) {
{{ getNameWithPriority(item) }}
}
}
Prioritized
Priority {{ itemList.priority }}   {{ itemList.priority == 0 ? "(Max)" : "" }} {{ itemList.priority == prioritizedItemListArray[prioritizedItemListArray.length - 1].priority ? "(Min)" : "" }}
@for (item of itemList.list; track item) {
{{ item.name }}
}