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

@(Title)

Order by
Filters @(ChildContent)
@if (_loaded) { if (string.IsNullOrWhiteSpace(_error)) { if (_items.Count > 0) { foreach (TItem item in _items) { long id = IdFunc(item); string url = string.Format(UrlIdTemplate, id);
} if (!_allItemsLoaded) {
@if (!_itemsLoading) { Load more } else { Loading... }
} } else {
No items found
} } else { } } else {
}