@using Blazorise.Extensions @using WatchIt.Website.Components.Subcomponents.Common @inherits Component @typeparam TItem @typeparam TQuery where TQuery : WatchIt.DTO.Query.IFilterQuery

@(Title)

@if (_loaded) { if (!_items.IsNullOrEmpty()) { for (int i = 0; i < _items.Count; i++) { if (i > 0) {

}
@{ int iCopy = i; TItem item = _items[iCopy]; string url = string.Format(UrlIdTemplate, IdFunc(item)); }
} if (!_allItemsLoaded) {
} } else {
No items found
} } else {
}