diff --git a/Aaru.Server/Components/Admin/Pages/CompactDiscOffsets/View.razor b/Aaru.Server/Components/Admin/Pages/CompactDiscOffsets/View.razor index c0436ce6..16ae635f 100644 --- a/Aaru.Server/Components/Admin/Pages/CompactDiscOffsets/View.razor +++ b/Aaru.Server/Components/Admin/Pages/CompactDiscOffsets/View.razor @@ -38,89 +38,176 @@ @if(!_initialized) { -
| - @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.Manufacturer)) - | -- @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.Model)) - | -- @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.Offset)) - | -- @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.Submissions)) - | -- @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.Agreement)) - | -- @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.AddedWhen)) - | -- @DisplayNameHelper.GetDisplayName(typeof(CompactDiscOffset), nameof(CompactDiscOffset.ModifiedWhen)) - | -- Actions - | -
|---|---|---|---|---|---|---|---|
| - @item.Manufacturer - | -- @item.Model - | -- @item.Offset - | -- @item.Submissions - | -- @item.Agreement - | -- @item.AddedWhen - | -- @item.ModifiedWhen - | -- - Edit - - - | -
Manage CD drive read offset database for accurate audio extraction
+| + ID + | ++ Manufacturer + | ++ Model + | ++ Offset + | ++ Submissions + | ++ Agreement + | ++ Added + | ++ Modified + | ++ Actions + | +
|---|---|---|---|---|---|---|---|---|
| + @item.Id + | ++ @item.Manufacturer + | ++ @item.Model + | ++ @item.Offset + | ++ @item.Submissions + | ++ @(item.Agreement*100)% + | ++ @item.AddedWhen.ToString("yyyy-MM-dd") + | ++ @item.ModifiedWhen.ToString("yyyy-MM-dd") + | ++ + + + + | +
@(string.IsNullOrWhiteSpace(_searchTerm) ? "No data available" : "Try adjusting your search criteria")
+