mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add CRUD for secondary database tables.
This commit is contained in:
153
DiscImageChef.Server/Areas/Admin/Controllers/AtasController.cs
Normal file
153
DiscImageChef.Server/Areas/Admin/Controllers/AtasController.cs
Normal file
@@ -0,0 +1,153 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class AtasController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public AtasController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Atas
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Ata.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Atas/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var ata = await _context.Ata
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (ata == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(ata);
|
||||
}
|
||||
|
||||
// GET: Admin/Atas/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Atas/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,Identify")] DiscImageChef.CommonTypes.Metadata.Ata ata)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(ata);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(ata);
|
||||
}
|
||||
|
||||
// GET: Admin/Atas/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var ata = await _context.Ata.FindAsync(id);
|
||||
if (ata == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(ata);
|
||||
}
|
||||
|
||||
// POST: Admin/Atas/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,Identify")] DiscImageChef.CommonTypes.Metadata.Ata ata)
|
||||
{
|
||||
if (id != ata.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(ata);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!AtaExists(ata.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(ata);
|
||||
}
|
||||
|
||||
// GET: Admin/Atas/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var ata = await _context.Ata
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (ata == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(ata);
|
||||
}
|
||||
|
||||
// POST: Admin/Atas/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var ata = await _context.Ata.FindAsync(id);
|
||||
_context.Ata.Remove(ata);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool AtaExists(int id)
|
||||
{
|
||||
return _context.Ata.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class BlockDescriptorsController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public BlockDescriptorsController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/BlockDescriptors
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.BlockDescriptor.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/BlockDescriptors/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var blockDescriptor = await _context.BlockDescriptor
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (blockDescriptor == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(blockDescriptor);
|
||||
}
|
||||
|
||||
// GET: Admin/BlockDescriptors/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/BlockDescriptors/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,Density,Blocks,BlockLength")] BlockDescriptor blockDescriptor)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(blockDescriptor);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(blockDescriptor);
|
||||
}
|
||||
|
||||
// GET: Admin/BlockDescriptors/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var blockDescriptor = await _context.BlockDescriptor.FindAsync(id);
|
||||
if (blockDescriptor == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(blockDescriptor);
|
||||
}
|
||||
|
||||
// POST: Admin/BlockDescriptors/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,Density,Blocks,BlockLength")] BlockDescriptor blockDescriptor)
|
||||
{
|
||||
if (id != blockDescriptor.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(blockDescriptor);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!BlockDescriptorExists(blockDescriptor.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(blockDescriptor);
|
||||
}
|
||||
|
||||
// GET: Admin/BlockDescriptors/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var blockDescriptor = await _context.BlockDescriptor
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (blockDescriptor == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(blockDescriptor);
|
||||
}
|
||||
|
||||
// POST: Admin/BlockDescriptors/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var blockDescriptor = await _context.BlockDescriptor.FindAsync(id);
|
||||
_context.BlockDescriptor.Remove(blockDescriptor);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool BlockDescriptorExists(int id)
|
||||
{
|
||||
return _context.BlockDescriptor.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
154
DiscImageChef.Server/Areas/Admin/Controllers/ChsController.cs
Normal file
154
DiscImageChef.Server/Areas/Admin/Controllers/ChsController.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class ChsController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public ChsController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Chs
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Chs.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Chs/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var chs = await _context.Chs
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (chs == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(chs);
|
||||
}
|
||||
|
||||
// GET: Admin/Chs/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Chs/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,Cylinders,Heads,Sectors")] Chs chs)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(chs);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(chs);
|
||||
}
|
||||
|
||||
// GET: Admin/Chs/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var chs = await _context.Chs.FindAsync(id);
|
||||
if (chs == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(chs);
|
||||
}
|
||||
|
||||
// POST: Admin/Chs/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,Cylinders,Heads,Sectors")] Chs chs)
|
||||
{
|
||||
if (id != chs.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(chs);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!ChsExists(chs.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(chs);
|
||||
}
|
||||
|
||||
// GET: Admin/Chs/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var chs = await _context.Chs
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (chs == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(chs);
|
||||
}
|
||||
|
||||
// POST: Admin/Chs/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var chs = await _context.Chs.FindAsync(id);
|
||||
_context.Chs.Remove(chs);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool ChsExists(int id)
|
||||
{
|
||||
return _context.Chs.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class DensityCodesController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public DensityCodesController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/DensityCodes
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.DensityCode.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/DensityCodes/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var densityCode = await _context.DensityCode
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (densityCode == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(densityCode);
|
||||
}
|
||||
|
||||
// GET: Admin/DensityCodes/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/DensityCodes/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,Code")] DensityCode densityCode)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(densityCode);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(densityCode);
|
||||
}
|
||||
|
||||
// GET: Admin/DensityCodes/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var densityCode = await _context.DensityCode.FindAsync(id);
|
||||
if (densityCode == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(densityCode);
|
||||
}
|
||||
|
||||
// POST: Admin/DensityCodes/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,Code")] DensityCode densityCode)
|
||||
{
|
||||
if (id != densityCode.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(densityCode);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!DensityCodeExists(densityCode.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(densityCode);
|
||||
}
|
||||
|
||||
// GET: Admin/DensityCodes/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var densityCode = await _context.DensityCode
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (densityCode == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(densityCode);
|
||||
}
|
||||
|
||||
// POST: Admin/DensityCodes/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var densityCode = await _context.DensityCode.FindAsync(id);
|
||||
_context.DensityCode.Remove(densityCode);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool DensityCodeExists(int id)
|
||||
{
|
||||
return _context.DensityCode.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class FireWiresController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public FireWiresController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/FireWires
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.FireWire.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/FireWires/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var fireWire = await _context.FireWire
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (fireWire == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(fireWire);
|
||||
}
|
||||
|
||||
// GET: Admin/FireWires/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/FireWires/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,VendorID,ProductID,Manufacturer,Product,RemovableMedia")] FireWire fireWire)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(fireWire);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(fireWire);
|
||||
}
|
||||
|
||||
// GET: Admin/FireWires/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var fireWire = await _context.FireWire.FindAsync(id);
|
||||
if (fireWire == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(fireWire);
|
||||
}
|
||||
|
||||
// POST: Admin/FireWires/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,VendorID,ProductID,Manufacturer,Product,RemovableMedia")] FireWire fireWire)
|
||||
{
|
||||
if (id != fireWire.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(fireWire);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!FireWireExists(fireWire.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(fireWire);
|
||||
}
|
||||
|
||||
// GET: Admin/FireWires/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var fireWire = await _context.FireWire
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (fireWire == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(fireWire);
|
||||
}
|
||||
|
||||
// POST: Admin/FireWires/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var fireWire = await _context.FireWire.FindAsync(id);
|
||||
_context.FireWire.Remove(fireWire);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool FireWireExists(int id)
|
||||
{
|
||||
return _context.FireWire.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
154
DiscImageChef.Server/Areas/Admin/Controllers/MmcController.cs
Normal file
154
DiscImageChef.Server/Areas/Admin/Controllers/MmcController.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class MmcController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public MmcController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Mmc
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Mmc.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Mmc/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmc = await _context.Mmc
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (mmc == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(mmc);
|
||||
}
|
||||
|
||||
// GET: Admin/Mmc/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Mmc/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,ModeSense2AData")] Mmc mmc)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(mmc);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(mmc);
|
||||
}
|
||||
|
||||
// GET: Admin/Mmc/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmc = await _context.Mmc.FindAsync(id);
|
||||
if (mmc == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(mmc);
|
||||
}
|
||||
|
||||
// POST: Admin/Mmc/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,ModeSense2AData")] Mmc mmc)
|
||||
{
|
||||
if (id != mmc.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(mmc);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!MmcExists(mmc.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(mmc);
|
||||
}
|
||||
|
||||
// GET: Admin/Mmc/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmc = await _context.Mmc
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (mmc == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(mmc);
|
||||
}
|
||||
|
||||
// POST: Admin/Mmc/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var mmc = await _context.Mmc.FindAsync(id);
|
||||
_context.Mmc.Remove(mmc);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool MmcExists(int id)
|
||||
{
|
||||
return _context.Mmc.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class MmcFeaturesController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public MmcFeaturesController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/MmcFeatures
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.MmcFeatures.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/MmcFeatures/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmcFeatures = await _context.MmcFeatures
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (mmcFeatures == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(mmcFeatures);
|
||||
}
|
||||
|
||||
// GET: Admin/MmcFeatures/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/MmcFeatures/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,AACSVersion,AGIDs,BindingNonceBlocks,BlocksPerReadableUnit,BufferUnderrunFreeInDVD,BufferUnderrunFreeInSAO,BufferUnderrunFreeInTAO,CanAudioScan,CanEject,CanEraseSector,CanExpandBDRESpareArea,CanFormat,CanFormatBDREWithoutSpare,CanFormatCert,CanFormatFRF,CanFormatQCert,CanFormatRRM,CanGenerateBindingNonce,CanLoad,CanMuteSeparateChannels,CanOverwriteSAOTrack,CanOverwriteTAOTrack,CanPlayCDAudio,CanPseudoOverwriteBDR,CanReadAllDualR,CanReadAllDualRW,CanReadBD,CanReadBDR,CanReadBDRE1,CanReadBDRE2,CanReadBDROM,CanReadBluBCA,CanReadCD,CanReadCDMRW,CanReadCPRM_MKB,CanReadDDCD,CanReadDVD,CanReadDVDPlusMRW,CanReadDVDPlusR,CanReadDVDPlusRDL,CanReadDVDPlusRW,CanReadDVDPlusRWDL,CanReadDriveAACSCertificate,CanReadHDDVD,CanReadHDDVDR,CanReadHDDVDRAM,CanReadLeadInCDText,CanReadOldBDR,CanReadOldBDRE,CanReadOldBDROM,CanReadSpareAreaInformation,CanReportDriveSerial,CanReportMediaSerial,CanTestWriteDDCDR,CanTestWriteDVD,CanTestWriteInSAO,CanTestWriteInTAO,CanUpgradeFirmware,CanWriteBD,CanWriteBDR,CanWriteBDRE1,CanWriteBDRE2,CanWriteBusEncryptedBlocks,CanWriteCDMRW,CanWriteCDRW,CanWriteCDRWCAV,CanWriteCDSAO,CanWriteCDTAO,CanWriteCSSManagedDVD,CanWriteDDCDR,CanWriteDDCDRW,CanWriteDVDPlusMRW,CanWriteDVDPlusR,CanWriteDVDPlusRDL,CanWriteDVDPlusRW,CanWriteDVDPlusRWDL,CanWriteDVDR,CanWriteDVDRDL,CanWriteDVDRW,CanWriteHDDVDR,CanWriteHDDVDRAM,CanWriteOldBDR,CanWriteOldBDRE,CanWritePackedSubchannelInTAO,CanWriteRWSubchannelInSAO,CanWriteRWSubchannelInTAO,CanWriteRaw,CanWriteRawMultiSession,CanWriteRawSubchannelInTAO,ChangerIsSideChangeCapable,ChangerSlots,ChangerSupportsDiscPresent,CPRMVersion,CSSVersion,DBML,DVDMultiRead,EmbeddedChanger,ErrorRecoveryPage,FirmwareDate,LoadingMechanismType,Locked,LogicalBlockSize,MultiRead,PhysicalInterfaceStandardNumber,PreventJumper,SupportsAACS,SupportsBusEncryption,SupportsC2,SupportsCPRM,SupportsCSS,SupportsDAP,SupportsDeviceBusyEvent,SupportsHybridDiscs,SupportsModePage1Ch,SupportsOSSC,SupportsPWP,SupportsSWPP,SupportsSecurDisc,SupportsSeparateVolume,SupportsVCPS,SupportsWriteInhibitDCB,SupportsWriteProtectPAC,VolumeLevels,BinaryData")] MmcFeatures mmcFeatures)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(mmcFeatures);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(mmcFeatures);
|
||||
}
|
||||
|
||||
// GET: Admin/MmcFeatures/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmcFeatures = await _context.MmcFeatures.FindAsync(id);
|
||||
if (mmcFeatures == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(mmcFeatures);
|
||||
}
|
||||
|
||||
// POST: Admin/MmcFeatures/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,AACSVersion,AGIDs,BindingNonceBlocks,BlocksPerReadableUnit,BufferUnderrunFreeInDVD,BufferUnderrunFreeInSAO,BufferUnderrunFreeInTAO,CanAudioScan,CanEject,CanEraseSector,CanExpandBDRESpareArea,CanFormat,CanFormatBDREWithoutSpare,CanFormatCert,CanFormatFRF,CanFormatQCert,CanFormatRRM,CanGenerateBindingNonce,CanLoad,CanMuteSeparateChannels,CanOverwriteSAOTrack,CanOverwriteTAOTrack,CanPlayCDAudio,CanPseudoOverwriteBDR,CanReadAllDualR,CanReadAllDualRW,CanReadBD,CanReadBDR,CanReadBDRE1,CanReadBDRE2,CanReadBDROM,CanReadBluBCA,CanReadCD,CanReadCDMRW,CanReadCPRM_MKB,CanReadDDCD,CanReadDVD,CanReadDVDPlusMRW,CanReadDVDPlusR,CanReadDVDPlusRDL,CanReadDVDPlusRW,CanReadDVDPlusRWDL,CanReadDriveAACSCertificate,CanReadHDDVD,CanReadHDDVDR,CanReadHDDVDRAM,CanReadLeadInCDText,CanReadOldBDR,CanReadOldBDRE,CanReadOldBDROM,CanReadSpareAreaInformation,CanReportDriveSerial,CanReportMediaSerial,CanTestWriteDDCDR,CanTestWriteDVD,CanTestWriteInSAO,CanTestWriteInTAO,CanUpgradeFirmware,CanWriteBD,CanWriteBDR,CanWriteBDRE1,CanWriteBDRE2,CanWriteBusEncryptedBlocks,CanWriteCDMRW,CanWriteCDRW,CanWriteCDRWCAV,CanWriteCDSAO,CanWriteCDTAO,CanWriteCSSManagedDVD,CanWriteDDCDR,CanWriteDDCDRW,CanWriteDVDPlusMRW,CanWriteDVDPlusR,CanWriteDVDPlusRDL,CanWriteDVDPlusRW,CanWriteDVDPlusRWDL,CanWriteDVDR,CanWriteDVDRDL,CanWriteDVDRW,CanWriteHDDVDR,CanWriteHDDVDRAM,CanWriteOldBDR,CanWriteOldBDRE,CanWritePackedSubchannelInTAO,CanWriteRWSubchannelInSAO,CanWriteRWSubchannelInTAO,CanWriteRaw,CanWriteRawMultiSession,CanWriteRawSubchannelInTAO,ChangerIsSideChangeCapable,ChangerSlots,ChangerSupportsDiscPresent,CPRMVersion,CSSVersion,DBML,DVDMultiRead,EmbeddedChanger,ErrorRecoveryPage,FirmwareDate,LoadingMechanismType,Locked,LogicalBlockSize,MultiRead,PhysicalInterfaceStandardNumber,PreventJumper,SupportsAACS,SupportsBusEncryption,SupportsC2,SupportsCPRM,SupportsCSS,SupportsDAP,SupportsDeviceBusyEvent,SupportsHybridDiscs,SupportsModePage1Ch,SupportsOSSC,SupportsPWP,SupportsSWPP,SupportsSecurDisc,SupportsSeparateVolume,SupportsVCPS,SupportsWriteInhibitDCB,SupportsWriteProtectPAC,VolumeLevels,BinaryData")] MmcFeatures mmcFeatures)
|
||||
{
|
||||
if (id != mmcFeatures.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(mmcFeatures);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!MmcFeaturesExists(mmcFeatures.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(mmcFeatures);
|
||||
}
|
||||
|
||||
// GET: Admin/MmcFeatures/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmcFeatures = await _context.MmcFeatures
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (mmcFeatures == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(mmcFeatures);
|
||||
}
|
||||
|
||||
// POST: Admin/MmcFeatures/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var mmcFeatures = await _context.MmcFeatures.FindAsync(id);
|
||||
_context.MmcFeatures.Remove(mmcFeatures);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool MmcFeaturesExists(int id)
|
||||
{
|
||||
return _context.MmcFeatures.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
154
DiscImageChef.Server/Areas/Admin/Controllers/MmcSdsController.cs
Normal file
154
DiscImageChef.Server/Areas/Admin/Controllers/MmcSdsController.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class MmcSdsController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public MmcSdsController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/MmcSds
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.MmcSd.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/MmcSds/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmcSd = await _context.MmcSd
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (mmcSd == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(mmcSd);
|
||||
}
|
||||
|
||||
// GET: Admin/MmcSds/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/MmcSds/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,CID,CSD,OCR,SCR,ExtendedCSD")] MmcSd mmcSd)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(mmcSd);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(mmcSd);
|
||||
}
|
||||
|
||||
// GET: Admin/MmcSds/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmcSd = await _context.MmcSd.FindAsync(id);
|
||||
if (mmcSd == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(mmcSd);
|
||||
}
|
||||
|
||||
// POST: Admin/MmcSds/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,CID,CSD,OCR,SCR,ExtendedCSD")] MmcSd mmcSd)
|
||||
{
|
||||
if (id != mmcSd.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(mmcSd);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!MmcSdExists(mmcSd.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(mmcSd);
|
||||
}
|
||||
|
||||
// GET: Admin/MmcSds/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var mmcSd = await _context.MmcSd
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (mmcSd == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(mmcSd);
|
||||
}
|
||||
|
||||
// POST: Admin/MmcSds/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var mmcSd = await _context.MmcSd.FindAsync(id);
|
||||
_context.MmcSd.Remove(mmcSd);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool MmcSdExists(int id)
|
||||
{
|
||||
return _context.MmcSd.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class PcmciasController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public PcmciasController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Pcmcias
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Pcmcia.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Pcmcias/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var pcmcia = await _context.Pcmcia
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (pcmcia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(pcmcia);
|
||||
}
|
||||
|
||||
// GET: Admin/Pcmcias/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Pcmcias/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,CIS,Compliance,ManufacturerCode,CardCode,Manufacturer,ProductName")] Pcmcia pcmcia)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(pcmcia);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(pcmcia);
|
||||
}
|
||||
|
||||
// GET: Admin/Pcmcias/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var pcmcia = await _context.Pcmcia.FindAsync(id);
|
||||
if (pcmcia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(pcmcia);
|
||||
}
|
||||
|
||||
// POST: Admin/Pcmcias/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,CIS,Compliance,ManufacturerCode,CardCode,Manufacturer,ProductName")] Pcmcia pcmcia)
|
||||
{
|
||||
if (id != pcmcia.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(pcmcia);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!PcmciaExists(pcmcia.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(pcmcia);
|
||||
}
|
||||
|
||||
// GET: Admin/Pcmcias/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var pcmcia = await _context.Pcmcia
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (pcmcia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(pcmcia);
|
||||
}
|
||||
|
||||
// POST: Admin/Pcmcias/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var pcmcia = await _context.Pcmcia.FindAsync(id);
|
||||
_context.Pcmcia.Remove(pcmcia);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool PcmciaExists(int id)
|
||||
{
|
||||
return _context.Pcmcia.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class ScsiModesController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public ScsiModesController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiModes
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.ScsiMode.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiModes/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsiMode = await _context.ScsiMode
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (scsiMode == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(scsiMode);
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiModes/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/ScsiModes/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,MediumType,WriteProtected,Speed,BufferedMode,BlankCheckEnabled,DPOandFUA")] ScsiMode scsiMode)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(scsiMode);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(scsiMode);
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiModes/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsiMode = await _context.ScsiMode.FindAsync(id);
|
||||
if (scsiMode == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(scsiMode);
|
||||
}
|
||||
|
||||
// POST: Admin/ScsiModes/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,MediumType,WriteProtected,Speed,BufferedMode,BlankCheckEnabled,DPOandFUA")] ScsiMode scsiMode)
|
||||
{
|
||||
if (id != scsiMode.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(scsiMode);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!ScsiModeExists(scsiMode.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(scsiMode);
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiModes/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsiMode = await _context.ScsiMode
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (scsiMode == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(scsiMode);
|
||||
}
|
||||
|
||||
// POST: Admin/ScsiModes/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var scsiMode = await _context.ScsiMode.FindAsync(id);
|
||||
_context.ScsiMode.Remove(scsiMode);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool ScsiModeExists(int id)
|
||||
{
|
||||
return _context.ScsiMode.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class ScsiPagesController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public ScsiPagesController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiPages
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.ScsiPage.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiPages/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsiPage = await _context.ScsiPage
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (scsiPage == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(scsiPage);
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiPages/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/ScsiPages/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,page,subpage,value")] ScsiPage scsiPage)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(scsiPage);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(scsiPage);
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiPages/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsiPage = await _context.ScsiPage.FindAsync(id);
|
||||
if (scsiPage == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(scsiPage);
|
||||
}
|
||||
|
||||
// POST: Admin/ScsiPages/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,page,subpage,value")] ScsiPage scsiPage)
|
||||
{
|
||||
if (id != scsiPage.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(scsiPage);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!ScsiPageExists(scsiPage.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(scsiPage);
|
||||
}
|
||||
|
||||
// GET: Admin/ScsiPages/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsiPage = await _context.ScsiPage
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (scsiPage == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(scsiPage);
|
||||
}
|
||||
|
||||
// POST: Admin/ScsiPages/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var scsiPage = await _context.ScsiPage.FindAsync(id);
|
||||
_context.ScsiPage.Remove(scsiPage);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool ScsiPageExists(int id)
|
||||
{
|
||||
return _context.ScsiPage.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
154
DiscImageChef.Server/Areas/Admin/Controllers/ScsisController.cs
Normal file
154
DiscImageChef.Server/Areas/Admin/Controllers/ScsisController.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class ScsisController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public ScsisController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Scsis
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Scsi.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Scsis/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsi = await _context.Scsi
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (scsi == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(scsi);
|
||||
}
|
||||
|
||||
// GET: Admin/Scsis/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Scsis/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,InquiryData,SupportsModeSense6,SupportsModeSense10,SupportsModeSubpages,ModeSense6Data,ModeSense10Data,ModeSense6CurrentData,ModeSense10CurrentData,ModeSense6ChangeableData,ModeSense10ChangeableData")] Scsi scsi)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(scsi);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(scsi);
|
||||
}
|
||||
|
||||
// GET: Admin/Scsis/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsi = await _context.Scsi.FindAsync(id);
|
||||
if (scsi == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(scsi);
|
||||
}
|
||||
|
||||
// POST: Admin/Scsis/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,InquiryData,SupportsModeSense6,SupportsModeSense10,SupportsModeSubpages,ModeSense6Data,ModeSense10Data,ModeSense6CurrentData,ModeSense10CurrentData,ModeSense6ChangeableData,ModeSense10ChangeableData")] Scsi scsi)
|
||||
{
|
||||
if (id != scsi.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(scsi);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!ScsiExists(scsi.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(scsi);
|
||||
}
|
||||
|
||||
// GET: Admin/Scsis/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var scsi = await _context.Scsi
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (scsi == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(scsi);
|
||||
}
|
||||
|
||||
// POST: Admin/Scsis/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var scsi = await _context.Scsi.FindAsync(id);
|
||||
_context.Scsi.Remove(scsi);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool ScsiExists(int id)
|
||||
{
|
||||
return _context.Scsi.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
154
DiscImageChef.Server/Areas/Admin/Controllers/SscsController.cs
Normal file
154
DiscImageChef.Server/Areas/Admin/Controllers/SscsController.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class SscsController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public SscsController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Sscs
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Ssc.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Sscs/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var ssc = await _context.Ssc
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (ssc == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(ssc);
|
||||
}
|
||||
|
||||
// GET: Admin/Sscs/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Sscs/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,BlockSizeGranularity,MaxBlockLength,MinBlockLength")] Ssc ssc)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(ssc);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(ssc);
|
||||
}
|
||||
|
||||
// GET: Admin/Sscs/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var ssc = await _context.Ssc.FindAsync(id);
|
||||
if (ssc == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(ssc);
|
||||
}
|
||||
|
||||
// POST: Admin/Sscs/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,BlockSizeGranularity,MaxBlockLength,MinBlockLength")] Ssc ssc)
|
||||
{
|
||||
if (id != ssc.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(ssc);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!SscExists(ssc.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(ssc);
|
||||
}
|
||||
|
||||
// GET: Admin/Sscs/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var ssc = await _context.Ssc
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (ssc == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(ssc);
|
||||
}
|
||||
|
||||
// POST: Admin/Sscs/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var ssc = await _context.Ssc.FindAsync(id);
|
||||
_context.Ssc.Remove(ssc);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool SscExists(int id)
|
||||
{
|
||||
return _context.Ssc.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class SupportedDensitiesController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public SupportedDensitiesController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/SupportedDensities
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.SupportedDensity.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/SupportedDensities/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var supportedDensity = await _context.SupportedDensity
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (supportedDensity == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(supportedDensity);
|
||||
}
|
||||
|
||||
// GET: Admin/SupportedDensities/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/SupportedDensities/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,PrimaryCode,SecondaryCode,Writable,Duplicate,DefaultDensity,BitsPerMm,Width,Tracks,Capacity,Organization,Name,Description")] SupportedDensity supportedDensity)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(supportedDensity);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(supportedDensity);
|
||||
}
|
||||
|
||||
// GET: Admin/SupportedDensities/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var supportedDensity = await _context.SupportedDensity.FindAsync(id);
|
||||
if (supportedDensity == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(supportedDensity);
|
||||
}
|
||||
|
||||
// POST: Admin/SupportedDensities/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,PrimaryCode,SecondaryCode,Writable,Duplicate,DefaultDensity,BitsPerMm,Width,Tracks,Capacity,Organization,Name,Description")] SupportedDensity supportedDensity)
|
||||
{
|
||||
if (id != supportedDensity.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(supportedDensity);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!SupportedDensityExists(supportedDensity.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(supportedDensity);
|
||||
}
|
||||
|
||||
// GET: Admin/SupportedDensities/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var supportedDensity = await _context.SupportedDensity
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (supportedDensity == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(supportedDensity);
|
||||
}
|
||||
|
||||
// POST: Admin/SupportedDensities/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var supportedDensity = await _context.SupportedDensity.FindAsync(id);
|
||||
_context.SupportedDensity.Remove(supportedDensity);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool SupportedDensityExists(int id)
|
||||
{
|
||||
return _context.SupportedDensity.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class TestedMediasController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public TestedMediasController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/TestedMedias
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.TestedMedia.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/TestedMedias/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var testedMedia = await _context.TestedMedia
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (testedMedia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(testedMedia);
|
||||
}
|
||||
|
||||
// GET: Admin/TestedMedias/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/TestedMedias/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,IdentifyData,Blocks,BlockSize,CanReadAACS,CanReadADIP,CanReadATIP,CanReadBCA,CanReadC2Pointers,CanReadCMI,CanReadCorrectedSubchannel,CanReadCorrectedSubchannelWithC2,CanReadDCB,CanReadDDS,CanReadDMI,CanReadDiscInformation,CanReadFullTOC,CanReadHDCMI,CanReadLayerCapacity,CanReadFirstTrackPreGap,CanReadLeadIn,CanReadLeadOut,CanReadMediaID,CanReadMediaSerial,CanReadPAC,CanReadPFI,CanReadPMA,CanReadPQSubchannel,CanReadPQSubchannelWithC2,CanReadPRI,CanReadRWSubchannel,CanReadRWSubchannelWithC2,CanReadRecordablePFI,CanReadSpareAreaInformation,CanReadTOC,Density,LongBlockSize,Manufacturer,MediaIsRecognized,MediumType,MediumTypeName,Model,SupportsHLDTSTReadRawDVD,SupportsNECReadCDDA,SupportsPioneerReadCDDA,SupportsPioneerReadCDDAMSF,SupportsPlextorReadCDDA,SupportsPlextorReadRawDVD,SupportsRead10,SupportsRead12,SupportsRead16,SupportsRead6,SupportsReadCapacity16,SupportsReadCapacity,SupportsReadCd,SupportsReadCdMsf,SupportsReadCdRaw,SupportsReadCdMsfRaw,SupportsReadLong16,SupportsReadLong,ModeSense6Data,ModeSense10Data,LBASectors,LBA48Sectors,LogicalAlignment,NominalRotationRate,PhysicalBlockSize,SolidStateDevice,UnformattedBPT,UnformattedBPS,SupportsReadDmaLba,SupportsReadDmaRetryLba,SupportsReadLba,SupportsReadRetryLba,SupportsReadLongLba,SupportsReadLongRetryLba,SupportsSeekLba,SupportsReadDmaLba48,SupportsReadLba48,SupportsReadDma,SupportsReadDmaRetry,SupportsReadRetry,SupportsReadSectors,SupportsReadLongRetry,SupportsSeek,CanReadingIntersessionLeadIn,CanReadingIntersessionLeadOut,IntersessionLeadInData,IntersessionLeadOutData,Read6Data,Read10Data,Read12Data,Read16Data,ReadLong10Data,ReadLong16Data,ReadSectorsData,ReadSectorsRetryData,ReadDmaData,ReadDmaRetryData,ReadLbaData,ReadRetryLbaData,ReadDmaLbaData,ReadDmaRetryLbaData,ReadLba48Data,ReadDmaLba48Data,ReadLongData,ReadLongRetryData,ReadLongLbaData,ReadLongRetryLbaData,TocData,FullTocData,AtipData,PmaData,ReadCdData,ReadCdMsfData,ReadCdFullData,ReadCdMsfFullData,Track1PregapData,LeadInData,LeadOutData,C2PointersData,PQSubchannelData,RWSubchannelData,CorrectedSubchannelData,PQSubchannelWithC2Data,RWSubchannelWithC2Data,CorrectedSubchannelWithC2Data,PfiData,DmiData,CmiData,DvdBcaData,DvdAacsData,DvdDdsData,DvdSaiData,PriData,EmbossedPfiData,AdipData,DcbData,HdCmiData,DvdLayerData,BluBcaData,BluDdsData,BluSaiData,BluDiData,BluPacData,PlextorReadCddaData,PioneerReadCddaData,PioneerReadCddaMsfData,NecReadCddaData,PlextorReadRawDVDData,HLDTSTReadRawDVDData")] TestedMedia testedMedia)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(testedMedia);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(testedMedia);
|
||||
}
|
||||
|
||||
// GET: Admin/TestedMedias/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var testedMedia = await _context.TestedMedia.FindAsync(id);
|
||||
if (testedMedia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(testedMedia);
|
||||
}
|
||||
|
||||
// POST: Admin/TestedMedias/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,IdentifyData,Blocks,BlockSize,CanReadAACS,CanReadADIP,CanReadATIP,CanReadBCA,CanReadC2Pointers,CanReadCMI,CanReadCorrectedSubchannel,CanReadCorrectedSubchannelWithC2,CanReadDCB,CanReadDDS,CanReadDMI,CanReadDiscInformation,CanReadFullTOC,CanReadHDCMI,CanReadLayerCapacity,CanReadFirstTrackPreGap,CanReadLeadIn,CanReadLeadOut,CanReadMediaID,CanReadMediaSerial,CanReadPAC,CanReadPFI,CanReadPMA,CanReadPQSubchannel,CanReadPQSubchannelWithC2,CanReadPRI,CanReadRWSubchannel,CanReadRWSubchannelWithC2,CanReadRecordablePFI,CanReadSpareAreaInformation,CanReadTOC,Density,LongBlockSize,Manufacturer,MediaIsRecognized,MediumType,MediumTypeName,Model,SupportsHLDTSTReadRawDVD,SupportsNECReadCDDA,SupportsPioneerReadCDDA,SupportsPioneerReadCDDAMSF,SupportsPlextorReadCDDA,SupportsPlextorReadRawDVD,SupportsRead10,SupportsRead12,SupportsRead16,SupportsRead6,SupportsReadCapacity16,SupportsReadCapacity,SupportsReadCd,SupportsReadCdMsf,SupportsReadCdRaw,SupportsReadCdMsfRaw,SupportsReadLong16,SupportsReadLong,ModeSense6Data,ModeSense10Data,LBASectors,LBA48Sectors,LogicalAlignment,NominalRotationRate,PhysicalBlockSize,SolidStateDevice,UnformattedBPT,UnformattedBPS,SupportsReadDmaLba,SupportsReadDmaRetryLba,SupportsReadLba,SupportsReadRetryLba,SupportsReadLongLba,SupportsReadLongRetryLba,SupportsSeekLba,SupportsReadDmaLba48,SupportsReadLba48,SupportsReadDma,SupportsReadDmaRetry,SupportsReadRetry,SupportsReadSectors,SupportsReadLongRetry,SupportsSeek,CanReadingIntersessionLeadIn,CanReadingIntersessionLeadOut,IntersessionLeadInData,IntersessionLeadOutData,Read6Data,Read10Data,Read12Data,Read16Data,ReadLong10Data,ReadLong16Data,ReadSectorsData,ReadSectorsRetryData,ReadDmaData,ReadDmaRetryData,ReadLbaData,ReadRetryLbaData,ReadDmaLbaData,ReadDmaRetryLbaData,ReadLba48Data,ReadDmaLba48Data,ReadLongData,ReadLongRetryData,ReadLongLbaData,ReadLongRetryLbaData,TocData,FullTocData,AtipData,PmaData,ReadCdData,ReadCdMsfData,ReadCdFullData,ReadCdMsfFullData,Track1PregapData,LeadInData,LeadOutData,C2PointersData,PQSubchannelData,RWSubchannelData,CorrectedSubchannelData,PQSubchannelWithC2Data,RWSubchannelWithC2Data,CorrectedSubchannelWithC2Data,PfiData,DmiData,CmiData,DvdBcaData,DvdAacsData,DvdDdsData,DvdSaiData,PriData,EmbossedPfiData,AdipData,DcbData,HdCmiData,DvdLayerData,BluBcaData,BluDdsData,BluSaiData,BluDiData,BluPacData,PlextorReadCddaData,PioneerReadCddaData,PioneerReadCddaMsfData,NecReadCddaData,PlextorReadRawDVDData,HLDTSTReadRawDVDData")] TestedMedia testedMedia)
|
||||
{
|
||||
if (id != testedMedia.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(testedMedia);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!TestedMediaExists(testedMedia.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(testedMedia);
|
||||
}
|
||||
|
||||
// GET: Admin/TestedMedias/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var testedMedia = await _context.TestedMedia
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (testedMedia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(testedMedia);
|
||||
}
|
||||
|
||||
// POST: Admin/TestedMedias/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var testedMedia = await _context.TestedMedia.FindAsync(id);
|
||||
_context.TestedMedia.Remove(testedMedia);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool TestedMediaExists(int id)
|
||||
{
|
||||
return _context.TestedMedia.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class TestedSequentialMediasController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public TestedSequentialMediasController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/TestedSequentialMedias
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.TestedSequentialMedia.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/TestedSequentialMedias/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var testedSequentialMedia = await _context.TestedSequentialMedia
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (testedSequentialMedia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(testedSequentialMedia);
|
||||
}
|
||||
|
||||
// GET: Admin/TestedSequentialMedias/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/TestedSequentialMedias/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,CanReadMediaSerial,Density,Manufacturer,MediaIsRecognized,MediumType,MediumTypeName,Model,ModeSense6Data,ModeSense10Data")] TestedSequentialMedia testedSequentialMedia)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(testedSequentialMedia);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(testedSequentialMedia);
|
||||
}
|
||||
|
||||
// GET: Admin/TestedSequentialMedias/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var testedSequentialMedia = await _context.TestedSequentialMedia.FindAsync(id);
|
||||
if (testedSequentialMedia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(testedSequentialMedia);
|
||||
}
|
||||
|
||||
// POST: Admin/TestedSequentialMedias/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,CanReadMediaSerial,Density,Manufacturer,MediaIsRecognized,MediumType,MediumTypeName,Model,ModeSense6Data,ModeSense10Data")] TestedSequentialMedia testedSequentialMedia)
|
||||
{
|
||||
if (id != testedSequentialMedia.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(testedSequentialMedia);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!TestedSequentialMediaExists(testedSequentialMedia.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(testedSequentialMedia);
|
||||
}
|
||||
|
||||
// GET: Admin/TestedSequentialMedias/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var testedSequentialMedia = await _context.TestedSequentialMedia
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (testedSequentialMedia == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(testedSequentialMedia);
|
||||
}
|
||||
|
||||
// POST: Admin/TestedSequentialMedias/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var testedSequentialMedia = await _context.TestedSequentialMedia.FindAsync(id);
|
||||
_context.TestedSequentialMedia.Remove(testedSequentialMedia);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool TestedSequentialMediaExists(int id)
|
||||
{
|
||||
return _context.TestedSequentialMedia.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
154
DiscImageChef.Server/Areas/Admin/Controllers/UsbsController.cs
Normal file
154
DiscImageChef.Server/Areas/Admin/Controllers/UsbsController.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DiscImageChef.CommonTypes.Metadata;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using DiscImageChef.Server.Models;
|
||||
|
||||
namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
{
|
||||
[Area("Admin")]
|
||||
public class UsbsController : Controller
|
||||
{
|
||||
private readonly DicServerContext _context;
|
||||
|
||||
public UsbsController(DicServerContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: Admin/Usbs
|
||||
public async Task<IActionResult> Index()
|
||||
{
|
||||
return View(await _context.Usb.ToListAsync());
|
||||
}
|
||||
|
||||
// GET: Admin/Usbs/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var usb = await _context.Usb
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (usb == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(usb);
|
||||
}
|
||||
|
||||
// GET: Admin/Usbs/Create
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
// POST: Admin/Usbs/Create
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Create([Bind("Id,VendorID,ProductID,Manufacturer,Product,RemovableMedia,Descriptors")] Usb usb)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
_context.Add(usb);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(usb);
|
||||
}
|
||||
|
||||
// GET: Admin/Usbs/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var usb = await _context.Usb.FindAsync(id);
|
||||
if (usb == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
return View(usb);
|
||||
}
|
||||
|
||||
// POST: Admin/Usbs/Edit/5
|
||||
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
||||
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> Edit(int id, [Bind("Id,VendorID,ProductID,Manufacturer,Product,RemovableMedia,Descriptors")] Usb usb)
|
||||
{
|
||||
if (id != usb.Id)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
try
|
||||
{
|
||||
_context.Update(usb);
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!UsbExists(usb.Id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
return View(usb);
|
||||
}
|
||||
|
||||
// GET: Admin/Usbs/Delete/5
|
||||
public async Task<IActionResult> Delete(int? id)
|
||||
{
|
||||
if (id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var usb = await _context.Usb
|
||||
.FirstOrDefaultAsync(m => m.Id == id);
|
||||
if (usb == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(usb);
|
||||
}
|
||||
|
||||
// POST: Admin/Usbs/Delete/5
|
||||
[HttpPost, ActionName("Delete")]
|
||||
[ValidateAntiForgeryToken]
|
||||
public async Task<IActionResult> DeleteConfirmed(int id)
|
||||
{
|
||||
var usb = await _context.Usb.FindAsync(id);
|
||||
_context.Usb.Remove(usb);
|
||||
await _context.SaveChangesAsync();
|
||||
return RedirectToAction(nameof(Index));
|
||||
}
|
||||
|
||||
private bool UsbExists(int id)
|
||||
{
|
||||
return _context.Usb.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
||||
39
DiscImageChef.Server/Areas/Admin/Views/Atas/Create.cshtml
Normal file
39
DiscImageChef.Server/Areas/Admin/Views/Atas/Create.cshtml
Normal file
@@ -0,0 +1,39 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ata
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Ata</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Identify" class="control-label"></label>
|
||||
<input asp-for="Identify" class="form-control" />
|
||||
<span asp-validation-for="Identify" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
36
DiscImageChef.Server/Areas/Admin/Views/Atas/Delete.cshtml
Normal file
36
DiscImageChef.Server/Areas/Admin/Views/Atas/Delete.cshtml
Normal file
@@ -0,0 +1,36 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ata
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Ata</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Identify)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Identify)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
33
DiscImageChef.Server/Areas/Admin/Views/Atas/Details.cshtml
Normal file
33
DiscImageChef.Server/Areas/Admin/Views/Atas/Details.cshtml
Normal file
@@ -0,0 +1,33 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ata
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Ata</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Identify)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Identify)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
40
DiscImageChef.Server/Areas/Admin/Views/Atas/Edit.cshtml
Normal file
40
DiscImageChef.Server/Areas/Admin/Views/Atas/Edit.cshtml
Normal file
@@ -0,0 +1,40 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ata
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Ata</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="Identify" class="control-label"></label>
|
||||
<input asp-for="Identify" class="form-control" />
|
||||
<span asp-validation-for="Identify" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
43
DiscImageChef.Server/Areas/Admin/Views/Atas/Index.cshtml
Normal file
43
DiscImageChef.Server/Areas/Admin/Views/Atas/Index.cshtml
Normal file
@@ -0,0 +1,43 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.Ata>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Identify)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Identify)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,49 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.BlockDescriptor
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>BlockDescriptor</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Density" class="control-label"></label>
|
||||
<input asp-for="Density" class="form-control" />
|
||||
<span asp-validation-for="Density" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Blocks" class="control-label"></label>
|
||||
<input asp-for="Blocks" class="form-control" />
|
||||
<span asp-validation-for="Blocks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlockLength" class="control-label"></label>
|
||||
<input asp-for="BlockLength" class="form-control" />
|
||||
<span asp-validation-for="BlockLength" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,48 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.BlockDescriptor
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>BlockDescriptor</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Density)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Blocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Blocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlockLength)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlockLength)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,45 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.BlockDescriptor
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>BlockDescriptor</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Density)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Blocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Blocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlockLength)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlockLength)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,50 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.BlockDescriptor
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>BlockDescriptor</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="Density" class="control-label"></label>
|
||||
<input asp-for="Density" class="form-control" />
|
||||
<span asp-validation-for="Density" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Blocks" class="control-label"></label>
|
||||
<input asp-for="Blocks" class="form-control" />
|
||||
<span asp-validation-for="Blocks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlockLength" class="control-label"></label>
|
||||
<input asp-for="BlockLength" class="form-control" />
|
||||
<span asp-validation-for="BlockLength" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,55 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.BlockDescriptor>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="width=device-width" name="viewport" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Blocks)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BlockLength)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model)
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Density)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Blocks)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BlockLength)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
49
DiscImageChef.Server/Areas/Admin/Views/Chs/Create.cshtml
Normal file
49
DiscImageChef.Server/Areas/Admin/Views/Chs/Create.cshtml
Normal file
@@ -0,0 +1,49 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Chs
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Chs</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Cylinders" class="control-label"></label>
|
||||
<input asp-for="Cylinders" class="form-control" />
|
||||
<span asp-validation-for="Cylinders" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Heads" class="control-label"></label>
|
||||
<input asp-for="Heads" class="form-control" />
|
||||
<span asp-validation-for="Heads" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Sectors" class="control-label"></label>
|
||||
<input asp-for="Sectors" class="form-control" />
|
||||
<span asp-validation-for="Sectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
48
DiscImageChef.Server/Areas/Admin/Views/Chs/Delete.cshtml
Normal file
48
DiscImageChef.Server/Areas/Admin/Views/Chs/Delete.cshtml
Normal file
@@ -0,0 +1,48 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Chs
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Chs</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Cylinders)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Cylinders)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Heads)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Heads)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Sectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Sectors)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
45
DiscImageChef.Server/Areas/Admin/Views/Chs/Details.cshtml
Normal file
45
DiscImageChef.Server/Areas/Admin/Views/Chs/Details.cshtml
Normal file
@@ -0,0 +1,45 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Chs
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Chs</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Cylinders)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Cylinders)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Heads)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Heads)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Sectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Sectors)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
50
DiscImageChef.Server/Areas/Admin/Views/Chs/Edit.cshtml
Normal file
50
DiscImageChef.Server/Areas/Admin/Views/Chs/Edit.cshtml
Normal file
@@ -0,0 +1,50 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Chs
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Chs</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="Cylinders" class="control-label"></label>
|
||||
<input asp-for="Cylinders" class="form-control" />
|
||||
<span asp-validation-for="Cylinders" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Heads" class="control-label"></label>
|
||||
<input asp-for="Heads" class="form-control" />
|
||||
<span asp-validation-for="Heads" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Sectors" class="control-label"></label>
|
||||
<input asp-for="Sectors" class="form-control" />
|
||||
<span asp-validation-for="Sectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
55
DiscImageChef.Server/Areas/Admin/Views/Chs/Index.cshtml
Normal file
55
DiscImageChef.Server/Areas/Admin/Views/Chs/Index.cshtml
Normal file
@@ -0,0 +1,55 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.Chs>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Cylinders)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Heads)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Sectors)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Cylinders)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Heads)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Sectors)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,39 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.DensityCode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>DensityCode</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Code" class="control-label"></label>
|
||||
<input asp-for="Code" class="form-control" />
|
||||
<span asp-validation-for="Code" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.DensityCode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>DensityCode</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Code)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Code)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,33 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.DensityCode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>DensityCode</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Code)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Code)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,40 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.DensityCode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>DensityCode</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="Code" class="control-label"></label>
|
||||
<input asp-for="Code" class="form-control" />
|
||||
<span asp-validation-for="Code" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,43 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.DensityCode>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Code)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Code)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,59 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.FireWire
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>FireWire</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="VendorID" class="control-label"></label>
|
||||
<input asp-for="VendorID" class="form-control" />
|
||||
<span asp-validation-for="VendorID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ProductID" class="control-label"></label>
|
||||
<input asp-for="ProductID" class="form-control" />
|
||||
<span asp-validation-for="ProductID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Product" class="control-label"></label>
|
||||
<input asp-for="Product" class="form-control" />
|
||||
<span asp-validation-for="Product" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="RemovableMedia" /> @Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,60 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.FireWire
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>FireWire</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.VendorID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.VendorID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ProductID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ProductID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Product)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Product)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RemovableMedia)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,57 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.FireWire
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>FireWire</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.VendorID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.VendorID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ProductID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ProductID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Product)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Product)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RemovableMedia)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
60
DiscImageChef.Server/Areas/Admin/Views/FireWires/Edit.cshtml
Normal file
60
DiscImageChef.Server/Areas/Admin/Views/FireWires/Edit.cshtml
Normal file
@@ -0,0 +1,60 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.FireWire
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>FireWire</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="VendorID" class="control-label"></label>
|
||||
<input asp-for="VendorID" class="form-control" />
|
||||
<span asp-validation-for="VendorID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ProductID" class="control-label"></label>
|
||||
<input asp-for="ProductID" class="form-control" />
|
||||
<span asp-validation-for="ProductID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Product" class="control-label"></label>
|
||||
<input asp-for="Product" class="form-control" />
|
||||
<span asp-validation-for="Product" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="RemovableMedia" /> @Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,67 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.FireWire>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.VendorID)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ProductID)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Product)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.VendorID)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ProductID)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Manufacturer)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Product)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.RemovableMedia)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
39
DiscImageChef.Server/Areas/Admin/Views/Mmc/Create.cshtml
Normal file
39
DiscImageChef.Server/Areas/Admin/Views/Mmc/Create.cshtml
Normal file
@@ -0,0 +1,39 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Mmc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Mmc</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense2AData" class="control-label"></label>
|
||||
<input asp-for="ModeSense2AData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense2AData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
36
DiscImageChef.Server/Areas/Admin/Views/Mmc/Delete.cshtml
Normal file
36
DiscImageChef.Server/Areas/Admin/Views/Mmc/Delete.cshtml
Normal file
@@ -0,0 +1,36 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Mmc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Mmc</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense2AData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense2AData)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
33
DiscImageChef.Server/Areas/Admin/Views/Mmc/Details.cshtml
Normal file
33
DiscImageChef.Server/Areas/Admin/Views/Mmc/Details.cshtml
Normal file
@@ -0,0 +1,33 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Mmc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Mmc</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense2AData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense2AData)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
40
DiscImageChef.Server/Areas/Admin/Views/Mmc/Edit.cshtml
Normal file
40
DiscImageChef.Server/Areas/Admin/Views/Mmc/Edit.cshtml
Normal file
@@ -0,0 +1,40 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Mmc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Mmc</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense2AData" class="control-label"></label>
|
||||
<input asp-for="ModeSense2AData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense2AData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
43
DiscImageChef.Server/Areas/Admin/Views/Mmc/Index.cshtml
Normal file
43
DiscImageChef.Server/Areas/Admin/Views/Mmc/Index.cshtml
Normal file
@@ -0,0 +1,43 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.Mmc>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense2AData)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense2AData)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
654
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Create.cshtml
Normal file
654
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Create.cshtml
Normal file
@@ -0,0 +1,654 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcFeatures
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>MmcFeatures</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AACSVersion" class="control-label"></label>
|
||||
<input asp-for="AACSVersion" class="form-control" />
|
||||
<span asp-validation-for="AACSVersion" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AGIDs" class="control-label"></label>
|
||||
<input asp-for="AGIDs" class="form-control" />
|
||||
<span asp-validation-for="AGIDs" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BindingNonceBlocks" class="control-label"></label>
|
||||
<input asp-for="BindingNonceBlocks" class="form-control" />
|
||||
<span asp-validation-for="BindingNonceBlocks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlocksPerReadableUnit" class="control-label"></label>
|
||||
<input asp-for="BlocksPerReadableUnit" class="form-control" />
|
||||
<span asp-validation-for="BlocksPerReadableUnit" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BufferUnderrunFreeInDVD" /> @Html.DisplayNameFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BufferUnderrunFreeInSAO" /> @Html.DisplayNameFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BufferUnderrunFreeInTAO" /> @Html.DisplayNameFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanAudioScan" /> @Html.DisplayNameFor(model => model.CanAudioScan)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanEject" /> @Html.DisplayNameFor(model => model.CanEject)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanEraseSector" /> @Html.DisplayNameFor(model => model.CanEraseSector)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanExpandBDRESpareArea" /> @Html.DisplayNameFor(model => model.CanExpandBDRESpareArea)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormat" /> @Html.DisplayNameFor(model => model.CanFormat)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatBDREWithoutSpare" /> @Html.DisplayNameFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatCert" /> @Html.DisplayNameFor(model => model.CanFormatCert)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatFRF" /> @Html.DisplayNameFor(model => model.CanFormatFRF)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatQCert" /> @Html.DisplayNameFor(model => model.CanFormatQCert)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatRRM" /> @Html.DisplayNameFor(model => model.CanFormatRRM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanGenerateBindingNonce" /> @Html.DisplayNameFor(model => model.CanGenerateBindingNonce)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanLoad" /> @Html.DisplayNameFor(model => model.CanLoad)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanMuteSeparateChannels" /> @Html.DisplayNameFor(model => model.CanMuteSeparateChannels)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanOverwriteSAOTrack" /> @Html.DisplayNameFor(model => model.CanOverwriteSAOTrack)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanOverwriteTAOTrack" /> @Html.DisplayNameFor(model => model.CanOverwriteTAOTrack)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanPlayCDAudio" /> @Html.DisplayNameFor(model => model.CanPlayCDAudio)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanPseudoOverwriteBDR" /> @Html.DisplayNameFor(model => model.CanPseudoOverwriteBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadAllDualR" /> @Html.DisplayNameFor(model => model.CanReadAllDualR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadAllDualRW" /> @Html.DisplayNameFor(model => model.CanReadAllDualRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBD" /> @Html.DisplayNameFor(model => model.CanReadBD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDR" /> @Html.DisplayNameFor(model => model.CanReadBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDRE1" /> @Html.DisplayNameFor(model => model.CanReadBDRE1)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDRE2" /> @Html.DisplayNameFor(model => model.CanReadBDRE2)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDROM" /> @Html.DisplayNameFor(model => model.CanReadBDROM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBluBCA" /> @Html.DisplayNameFor(model => model.CanReadBluBCA)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadCD" /> @Html.DisplayNameFor(model => model.CanReadCD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadCDMRW" /> @Html.DisplayNameFor(model => model.CanReadCDMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadCPRM_MKB" /> @Html.DisplayNameFor(model => model.CanReadCPRM_MKB)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDDCD" /> @Html.DisplayNameFor(model => model.CanReadDDCD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVD" /> @Html.DisplayNameFor(model => model.CanReadDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusMRW" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusR" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusRDL" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusRDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusRW" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusRWDL" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusRWDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDriveAACSCertificate" /> @Html.DisplayNameFor(model => model.CanReadDriveAACSCertificate)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadHDDVD" /> @Html.DisplayNameFor(model => model.CanReadHDDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadHDDVDR" /> @Html.DisplayNameFor(model => model.CanReadHDDVDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadHDDVDRAM" /> @Html.DisplayNameFor(model => model.CanReadHDDVDRAM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadLeadInCDText" /> @Html.DisplayNameFor(model => model.CanReadLeadInCDText)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadOldBDR" /> @Html.DisplayNameFor(model => model.CanReadOldBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadOldBDRE" /> @Html.DisplayNameFor(model => model.CanReadOldBDRE)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadOldBDROM" /> @Html.DisplayNameFor(model => model.CanReadOldBDROM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadSpareAreaInformation" /> @Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReportDriveSerial" /> @Html.DisplayNameFor(model => model.CanReportDriveSerial)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReportMediaSerial" /> @Html.DisplayNameFor(model => model.CanReportMediaSerial)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteDDCDR" /> @Html.DisplayNameFor(model => model.CanTestWriteDDCDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteDVD" /> @Html.DisplayNameFor(model => model.CanTestWriteDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteInSAO" /> @Html.DisplayNameFor(model => model.CanTestWriteInSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteInTAO" /> @Html.DisplayNameFor(model => model.CanTestWriteInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanUpgradeFirmware" /> @Html.DisplayNameFor(model => model.CanUpgradeFirmware)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBD" /> @Html.DisplayNameFor(model => model.CanWriteBD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBDR" /> @Html.DisplayNameFor(model => model.CanWriteBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBDRE1" /> @Html.DisplayNameFor(model => model.CanWriteBDRE1)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBDRE2" /> @Html.DisplayNameFor(model => model.CanWriteBDRE2)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBusEncryptedBlocks" /> @Html.DisplayNameFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDMRW" /> @Html.DisplayNameFor(model => model.CanWriteCDMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDRW" /> @Html.DisplayNameFor(model => model.CanWriteCDRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDRWCAV" /> @Html.DisplayNameFor(model => model.CanWriteCDRWCAV)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDSAO" /> @Html.DisplayNameFor(model => model.CanWriteCDSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDTAO" /> @Html.DisplayNameFor(model => model.CanWriteCDTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCSSManagedDVD" /> @Html.DisplayNameFor(model => model.CanWriteCSSManagedDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDDCDR" /> @Html.DisplayNameFor(model => model.CanWriteDDCDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDDCDRW" /> @Html.DisplayNameFor(model => model.CanWriteDDCDRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusMRW" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusR" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusRDL" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusRDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusRW" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusRWDL" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDR" /> @Html.DisplayNameFor(model => model.CanWriteDVDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDRDL" /> @Html.DisplayNameFor(model => model.CanWriteDVDRDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDRW" /> @Html.DisplayNameFor(model => model.CanWriteDVDRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteHDDVDR" /> @Html.DisplayNameFor(model => model.CanWriteHDDVDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteHDDVDRAM" /> @Html.DisplayNameFor(model => model.CanWriteHDDVDRAM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteOldBDR" /> @Html.DisplayNameFor(model => model.CanWriteOldBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteOldBDRE" /> @Html.DisplayNameFor(model => model.CanWriteOldBDRE)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWritePackedSubchannelInTAO" /> @Html.DisplayNameFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRWSubchannelInSAO" /> @Html.DisplayNameFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRWSubchannelInTAO" /> @Html.DisplayNameFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRaw" /> @Html.DisplayNameFor(model => model.CanWriteRaw)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRawMultiSession" /> @Html.DisplayNameFor(model => model.CanWriteRawMultiSession)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRawSubchannelInTAO" /> @Html.DisplayNameFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="ChangerIsSideChangeCapable" /> @Html.DisplayNameFor(model => model.ChangerIsSideChangeCapable)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ChangerSlots" class="control-label"></label>
|
||||
<input asp-for="ChangerSlots" class="form-control" />
|
||||
<span asp-validation-for="ChangerSlots" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="ChangerSupportsDiscPresent" /> @Html.DisplayNameFor(model => model.ChangerSupportsDiscPresent)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CPRMVersion" class="control-label"></label>
|
||||
<input asp-for="CPRMVersion" class="form-control" />
|
||||
<span asp-validation-for="CPRMVersion" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CSSVersion" class="control-label"></label>
|
||||
<input asp-for="CSSVersion" class="form-control" />
|
||||
<span asp-validation-for="CSSVersion" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DBML" /> @Html.DisplayNameFor(model => model.DBML)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DVDMultiRead" /> @Html.DisplayNameFor(model => model.DVDMultiRead)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="EmbeddedChanger" /> @Html.DisplayNameFor(model => model.EmbeddedChanger)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="ErrorRecoveryPage" /> @Html.DisplayNameFor(model => model.ErrorRecoveryPage)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="FirmwareDate" class="control-label"></label>
|
||||
<input asp-for="FirmwareDate" class="form-control" />
|
||||
<span asp-validation-for="FirmwareDate" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LoadingMechanismType" class="control-label"></label>
|
||||
<input asp-for="LoadingMechanismType" class="form-control" />
|
||||
<span asp-validation-for="LoadingMechanismType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="Locked" /> @Html.DisplayNameFor(model => model.Locked)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LogicalBlockSize" class="control-label"></label>
|
||||
<input asp-for="LogicalBlockSize" class="form-control" />
|
||||
<span asp-validation-for="LogicalBlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="MultiRead" /> @Html.DisplayNameFor(model => model.MultiRead)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PhysicalInterfaceStandardNumber" class="control-label"></label>
|
||||
<input asp-for="PhysicalInterfaceStandardNumber" class="form-control" />
|
||||
<span asp-validation-for="PhysicalInterfaceStandardNumber" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="PreventJumper" /> @Html.DisplayNameFor(model => model.PreventJumper)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsAACS" /> @Html.DisplayNameFor(model => model.SupportsAACS)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsBusEncryption" /> @Html.DisplayNameFor(model => model.SupportsBusEncryption)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsC2" /> @Html.DisplayNameFor(model => model.SupportsC2)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsCPRM" /> @Html.DisplayNameFor(model => model.SupportsCPRM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsCSS" /> @Html.DisplayNameFor(model => model.SupportsCSS)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsDAP" /> @Html.DisplayNameFor(model => model.SupportsDAP)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsDeviceBusyEvent" /> @Html.DisplayNameFor(model => model.SupportsDeviceBusyEvent)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsHybridDiscs" /> @Html.DisplayNameFor(model => model.SupportsHybridDiscs)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModePage1Ch" /> @Html.DisplayNameFor(model => model.SupportsModePage1Ch)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsOSSC" /> @Html.DisplayNameFor(model => model.SupportsOSSC)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsPWP" /> @Html.DisplayNameFor(model => model.SupportsPWP)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsSWPP" /> @Html.DisplayNameFor(model => model.SupportsSWPP)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsSecurDisc" /> @Html.DisplayNameFor(model => model.SupportsSecurDisc)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsSeparateVolume" /> @Html.DisplayNameFor(model => model.SupportsSeparateVolume)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsVCPS" /> @Html.DisplayNameFor(model => model.SupportsVCPS)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsWriteInhibitDCB" /> @Html.DisplayNameFor(model => model.SupportsWriteInhibitDCB)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsWriteProtectPAC" /> @Html.DisplayNameFor(model => model.SupportsWriteProtectPAC)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="VolumeLevels" class="control-label"></label>
|
||||
<input asp-for="VolumeLevels" class="form-control" />
|
||||
<span asp-validation-for="VolumeLevels" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BinaryData" class="control-label"></label>
|
||||
<input asp-for="BinaryData" class="form-control" />
|
||||
<span asp-validation-for="BinaryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
774
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Delete.cshtml
Normal file
774
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Delete.cshtml
Normal file
@@ -0,0 +1,774 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcFeatures
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>MmcFeatures</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AACSVersion)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AACSVersion)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AGIDs)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AGIDs)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BindingNonceBlocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BindingNonceBlocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlocksPerReadableUnit)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlocksPerReadableUnit)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanAudioScan)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanAudioScan)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanEject)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanEject)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanEraseSector)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanEraseSector)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanExpandBDRESpareArea)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanExpandBDRESpareArea)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormat)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormat)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatCert)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatCert)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatFRF)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatFRF)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatQCert)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatQCert)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatRRM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatRRM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanGenerateBindingNonce)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanGenerateBindingNonce)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanLoad)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanLoad)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanMuteSeparateChannels)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanMuteSeparateChannels)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanOverwriteSAOTrack)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanOverwriteSAOTrack)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanOverwriteTAOTrack)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanOverwriteTAOTrack)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanPlayCDAudio)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanPlayCDAudio)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanPseudoOverwriteBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanPseudoOverwriteBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadAllDualR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadAllDualR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadAllDualRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadAllDualRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDRE1)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDRE1)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDRE2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDRE2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDROM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDROM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBluBCA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBluBCA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCDMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCDMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCPRM_MKB)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCPRM_MKB)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDDCD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDDCD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusRDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRWDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusRWDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDriveAACSCertificate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDriveAACSCertificate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDDVDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVDRAM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDDVDRAM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadInCDText)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLeadInCDText)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadOldBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDRE)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadOldBDRE)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDROM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadOldBDROM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadSpareAreaInformation)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReportDriveSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReportDriveSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReportMediaSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReportMediaSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteDDCDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteDDCDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteInSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteInSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanUpgradeFirmware)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanUpgradeFirmware)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDRE1)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBDRE1)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDRE2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBDRE2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDRWCAV)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDRWCAV)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCSSManagedDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCSSManagedDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDDCDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDDCDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDDCDRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDDCDRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusRDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDRDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDRDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteHDDVDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteHDDVDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteHDDVDRAM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteHDDVDRAM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteOldBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteOldBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteOldBDRE)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteOldBDRE)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRaw)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRaw)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRawMultiSession)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRawMultiSession)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ChangerIsSideChangeCapable)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ChangerIsSideChangeCapable)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ChangerSlots)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ChangerSlots)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ChangerSupportsDiscPresent)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ChangerSupportsDiscPresent)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CPRMVersion)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CPRMVersion)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CSSVersion)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CSSVersion)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DBML)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DBML)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DVDMultiRead)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DVDMultiRead)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.EmbeddedChanger)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.EmbeddedChanger)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ErrorRecoveryPage)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ErrorRecoveryPage)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.FirmwareDate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.FirmwareDate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LoadingMechanismType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LoadingMechanismType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Locked)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Locked)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LogicalBlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LogicalBlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MultiRead)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MultiRead)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PhysicalInterfaceStandardNumber)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PhysicalInterfaceStandardNumber)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PreventJumper)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PreventJumper)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsAACS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsAACS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsBusEncryption)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsBusEncryption)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsCPRM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsCPRM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsCSS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsCSS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsDAP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsDAP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsDeviceBusyEvent)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsDeviceBusyEvent)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsHybridDiscs)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsHybridDiscs)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModePage1Ch)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModePage1Ch)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsOSSC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsOSSC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPWP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPWP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSWPP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSWPP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSecurDisc)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSecurDisc)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSeparateVolume)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSeparateVolume)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsVCPS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsVCPS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsWriteInhibitDCB)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsWriteInhibitDCB)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsWriteProtectPAC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsWriteProtectPAC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.VolumeLevels)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.VolumeLevels)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BinaryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BinaryData)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,771 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcFeatures
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>MmcFeatures</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AACSVersion)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AACSVersion)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AGIDs)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AGIDs)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BindingNonceBlocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BindingNonceBlocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlocksPerReadableUnit)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlocksPerReadableUnit)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanAudioScan)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanAudioScan)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanEject)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanEject)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanEraseSector)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanEraseSector)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanExpandBDRESpareArea)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanExpandBDRESpareArea)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormat)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormat)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatCert)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatCert)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatFRF)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatFRF)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatQCert)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatQCert)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanFormatRRM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanFormatRRM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanGenerateBindingNonce)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanGenerateBindingNonce)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanLoad)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanLoad)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanMuteSeparateChannels)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanMuteSeparateChannels)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanOverwriteSAOTrack)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanOverwriteSAOTrack)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanOverwriteTAOTrack)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanOverwriteTAOTrack)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanPlayCDAudio)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanPlayCDAudio)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanPseudoOverwriteBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanPseudoOverwriteBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadAllDualR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadAllDualR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadAllDualRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadAllDualRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDRE1)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDRE1)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDRE2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDRE2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBDROM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBDROM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBluBCA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBluBCA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCDMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCDMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCPRM_MKB)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCPRM_MKB)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDDCD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDDCD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusRDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRWDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDVDPlusRWDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDriveAACSCertificate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDriveAACSCertificate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDDVDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVDRAM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDDVDRAM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadInCDText)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLeadInCDText)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadOldBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDRE)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadOldBDRE)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDROM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadOldBDROM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadSpareAreaInformation)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReportDriveSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReportDriveSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReportMediaSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReportMediaSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteDDCDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteDDCDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteInSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteInSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanTestWriteInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanUpgradeFirmware)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanUpgradeFirmware)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDRE1)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBDRE1)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDRE2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBDRE2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDRWCAV)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDRWCAV)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCDTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteCSSManagedDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteCSSManagedDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDDCDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDDCDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDDCDRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDDCDRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusMRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusMRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusRDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDRDL)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDRDL)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDRW)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteDVDRW)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteHDDVDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteHDDVDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteHDDVDRAM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteHDDVDRAM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteOldBDR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteOldBDR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteOldBDRE)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteOldBDRE)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRaw)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRaw)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRawMultiSession)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRawMultiSession)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ChangerIsSideChangeCapable)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ChangerIsSideChangeCapable)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ChangerSlots)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ChangerSlots)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ChangerSupportsDiscPresent)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ChangerSupportsDiscPresent)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CPRMVersion)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CPRMVersion)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CSSVersion)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CSSVersion)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DBML)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DBML)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DVDMultiRead)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DVDMultiRead)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.EmbeddedChanger)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.EmbeddedChanger)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ErrorRecoveryPage)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ErrorRecoveryPage)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.FirmwareDate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.FirmwareDate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LoadingMechanismType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LoadingMechanismType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Locked)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Locked)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LogicalBlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LogicalBlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MultiRead)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MultiRead)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PhysicalInterfaceStandardNumber)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PhysicalInterfaceStandardNumber)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PreventJumper)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PreventJumper)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsAACS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsAACS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsBusEncryption)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsBusEncryption)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsCPRM)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsCPRM)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsCSS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsCSS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsDAP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsDAP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsDeviceBusyEvent)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsDeviceBusyEvent)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsHybridDiscs)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsHybridDiscs)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModePage1Ch)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModePage1Ch)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsOSSC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsOSSC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPWP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPWP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSWPP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSWPP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSecurDisc)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSecurDisc)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSeparateVolume)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSeparateVolume)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsVCPS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsVCPS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsWriteInhibitDCB)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsWriteInhibitDCB)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsWriteProtectPAC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsWriteProtectPAC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.VolumeLevels)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.VolumeLevels)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BinaryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BinaryData)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
655
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Edit.cshtml
Normal file
655
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Edit.cshtml
Normal file
@@ -0,0 +1,655 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcFeatures
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>MmcFeatures</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="AACSVersion" class="control-label"></label>
|
||||
<input asp-for="AACSVersion" class="form-control" />
|
||||
<span asp-validation-for="AACSVersion" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AGIDs" class="control-label"></label>
|
||||
<input asp-for="AGIDs" class="form-control" />
|
||||
<span asp-validation-for="AGIDs" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BindingNonceBlocks" class="control-label"></label>
|
||||
<input asp-for="BindingNonceBlocks" class="form-control" />
|
||||
<span asp-validation-for="BindingNonceBlocks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlocksPerReadableUnit" class="control-label"></label>
|
||||
<input asp-for="BlocksPerReadableUnit" class="form-control" />
|
||||
<span asp-validation-for="BlocksPerReadableUnit" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BufferUnderrunFreeInDVD" /> @Html.DisplayNameFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BufferUnderrunFreeInSAO" /> @Html.DisplayNameFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BufferUnderrunFreeInTAO" /> @Html.DisplayNameFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanAudioScan" /> @Html.DisplayNameFor(model => model.CanAudioScan)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanEject" /> @Html.DisplayNameFor(model => model.CanEject)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanEraseSector" /> @Html.DisplayNameFor(model => model.CanEraseSector)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanExpandBDRESpareArea" /> @Html.DisplayNameFor(model => model.CanExpandBDRESpareArea)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormat" /> @Html.DisplayNameFor(model => model.CanFormat)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatBDREWithoutSpare" /> @Html.DisplayNameFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatCert" /> @Html.DisplayNameFor(model => model.CanFormatCert)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatFRF" /> @Html.DisplayNameFor(model => model.CanFormatFRF)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatQCert" /> @Html.DisplayNameFor(model => model.CanFormatQCert)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanFormatRRM" /> @Html.DisplayNameFor(model => model.CanFormatRRM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanGenerateBindingNonce" /> @Html.DisplayNameFor(model => model.CanGenerateBindingNonce)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanLoad" /> @Html.DisplayNameFor(model => model.CanLoad)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanMuteSeparateChannels" /> @Html.DisplayNameFor(model => model.CanMuteSeparateChannels)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanOverwriteSAOTrack" /> @Html.DisplayNameFor(model => model.CanOverwriteSAOTrack)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanOverwriteTAOTrack" /> @Html.DisplayNameFor(model => model.CanOverwriteTAOTrack)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanPlayCDAudio" /> @Html.DisplayNameFor(model => model.CanPlayCDAudio)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanPseudoOverwriteBDR" /> @Html.DisplayNameFor(model => model.CanPseudoOverwriteBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadAllDualR" /> @Html.DisplayNameFor(model => model.CanReadAllDualR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadAllDualRW" /> @Html.DisplayNameFor(model => model.CanReadAllDualRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBD" /> @Html.DisplayNameFor(model => model.CanReadBD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDR" /> @Html.DisplayNameFor(model => model.CanReadBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDRE1" /> @Html.DisplayNameFor(model => model.CanReadBDRE1)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDRE2" /> @Html.DisplayNameFor(model => model.CanReadBDRE2)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBDROM" /> @Html.DisplayNameFor(model => model.CanReadBDROM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadBluBCA" /> @Html.DisplayNameFor(model => model.CanReadBluBCA)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadCD" /> @Html.DisplayNameFor(model => model.CanReadCD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadCDMRW" /> @Html.DisplayNameFor(model => model.CanReadCDMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadCPRM_MKB" /> @Html.DisplayNameFor(model => model.CanReadCPRM_MKB)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDDCD" /> @Html.DisplayNameFor(model => model.CanReadDDCD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVD" /> @Html.DisplayNameFor(model => model.CanReadDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusMRW" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusR" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusRDL" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusRDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusRW" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDVDPlusRWDL" /> @Html.DisplayNameFor(model => model.CanReadDVDPlusRWDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadDriveAACSCertificate" /> @Html.DisplayNameFor(model => model.CanReadDriveAACSCertificate)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadHDDVD" /> @Html.DisplayNameFor(model => model.CanReadHDDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadHDDVDR" /> @Html.DisplayNameFor(model => model.CanReadHDDVDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadHDDVDRAM" /> @Html.DisplayNameFor(model => model.CanReadHDDVDRAM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadLeadInCDText" /> @Html.DisplayNameFor(model => model.CanReadLeadInCDText)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadOldBDR" /> @Html.DisplayNameFor(model => model.CanReadOldBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadOldBDRE" /> @Html.DisplayNameFor(model => model.CanReadOldBDRE)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadOldBDROM" /> @Html.DisplayNameFor(model => model.CanReadOldBDROM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReadSpareAreaInformation" /> @Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReportDriveSerial" /> @Html.DisplayNameFor(model => model.CanReportDriveSerial)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanReportMediaSerial" /> @Html.DisplayNameFor(model => model.CanReportMediaSerial)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteDDCDR" /> @Html.DisplayNameFor(model => model.CanTestWriteDDCDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteDVD" /> @Html.DisplayNameFor(model => model.CanTestWriteDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteInSAO" /> @Html.DisplayNameFor(model => model.CanTestWriteInSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanTestWriteInTAO" /> @Html.DisplayNameFor(model => model.CanTestWriteInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanUpgradeFirmware" /> @Html.DisplayNameFor(model => model.CanUpgradeFirmware)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBD" /> @Html.DisplayNameFor(model => model.CanWriteBD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBDR" /> @Html.DisplayNameFor(model => model.CanWriteBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBDRE1" /> @Html.DisplayNameFor(model => model.CanWriteBDRE1)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBDRE2" /> @Html.DisplayNameFor(model => model.CanWriteBDRE2)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteBusEncryptedBlocks" /> @Html.DisplayNameFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDMRW" /> @Html.DisplayNameFor(model => model.CanWriteCDMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDRW" /> @Html.DisplayNameFor(model => model.CanWriteCDRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDRWCAV" /> @Html.DisplayNameFor(model => model.CanWriteCDRWCAV)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDSAO" /> @Html.DisplayNameFor(model => model.CanWriteCDSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCDTAO" /> @Html.DisplayNameFor(model => model.CanWriteCDTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteCSSManagedDVD" /> @Html.DisplayNameFor(model => model.CanWriteCSSManagedDVD)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDDCDR" /> @Html.DisplayNameFor(model => model.CanWriteDDCDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDDCDRW" /> @Html.DisplayNameFor(model => model.CanWriteDDCDRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusMRW" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusMRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusR" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusRDL" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusRDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusRW" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDPlusRWDL" /> @Html.DisplayNameFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDR" /> @Html.DisplayNameFor(model => model.CanWriteDVDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDRDL" /> @Html.DisplayNameFor(model => model.CanWriteDVDRDL)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteDVDRW" /> @Html.DisplayNameFor(model => model.CanWriteDVDRW)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteHDDVDR" /> @Html.DisplayNameFor(model => model.CanWriteHDDVDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteHDDVDRAM" /> @Html.DisplayNameFor(model => model.CanWriteHDDVDRAM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteOldBDR" /> @Html.DisplayNameFor(model => model.CanWriteOldBDR)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteOldBDRE" /> @Html.DisplayNameFor(model => model.CanWriteOldBDRE)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWritePackedSubchannelInTAO" /> @Html.DisplayNameFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRWSubchannelInSAO" /> @Html.DisplayNameFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRWSubchannelInTAO" /> @Html.DisplayNameFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRaw" /> @Html.DisplayNameFor(model => model.CanWriteRaw)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRawMultiSession" /> @Html.DisplayNameFor(model => model.CanWriteRawMultiSession)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="CanWriteRawSubchannelInTAO" /> @Html.DisplayNameFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="ChangerIsSideChangeCapable" /> @Html.DisplayNameFor(model => model.ChangerIsSideChangeCapable)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ChangerSlots" class="control-label"></label>
|
||||
<input asp-for="ChangerSlots" class="form-control" />
|
||||
<span asp-validation-for="ChangerSlots" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="ChangerSupportsDiscPresent" /> @Html.DisplayNameFor(model => model.ChangerSupportsDiscPresent)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CPRMVersion" class="control-label"></label>
|
||||
<input asp-for="CPRMVersion" class="form-control" />
|
||||
<span asp-validation-for="CPRMVersion" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CSSVersion" class="control-label"></label>
|
||||
<input asp-for="CSSVersion" class="form-control" />
|
||||
<span asp-validation-for="CSSVersion" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DBML" /> @Html.DisplayNameFor(model => model.DBML)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DVDMultiRead" /> @Html.DisplayNameFor(model => model.DVDMultiRead)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="EmbeddedChanger" /> @Html.DisplayNameFor(model => model.EmbeddedChanger)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="ErrorRecoveryPage" /> @Html.DisplayNameFor(model => model.ErrorRecoveryPage)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="FirmwareDate" class="control-label"></label>
|
||||
<input asp-for="FirmwareDate" class="form-control" />
|
||||
<span asp-validation-for="FirmwareDate" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LoadingMechanismType" class="control-label"></label>
|
||||
<input asp-for="LoadingMechanismType" class="form-control" />
|
||||
<span asp-validation-for="LoadingMechanismType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="Locked" /> @Html.DisplayNameFor(model => model.Locked)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LogicalBlockSize" class="control-label"></label>
|
||||
<input asp-for="LogicalBlockSize" class="form-control" />
|
||||
<span asp-validation-for="LogicalBlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="MultiRead" /> @Html.DisplayNameFor(model => model.MultiRead)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PhysicalInterfaceStandardNumber" class="control-label"></label>
|
||||
<input asp-for="PhysicalInterfaceStandardNumber" class="form-control" />
|
||||
<span asp-validation-for="PhysicalInterfaceStandardNumber" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="PreventJumper" /> @Html.DisplayNameFor(model => model.PreventJumper)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsAACS" /> @Html.DisplayNameFor(model => model.SupportsAACS)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsBusEncryption" /> @Html.DisplayNameFor(model => model.SupportsBusEncryption)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsC2" /> @Html.DisplayNameFor(model => model.SupportsC2)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsCPRM" /> @Html.DisplayNameFor(model => model.SupportsCPRM)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsCSS" /> @Html.DisplayNameFor(model => model.SupportsCSS)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsDAP" /> @Html.DisplayNameFor(model => model.SupportsDAP)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsDeviceBusyEvent" /> @Html.DisplayNameFor(model => model.SupportsDeviceBusyEvent)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsHybridDiscs" /> @Html.DisplayNameFor(model => model.SupportsHybridDiscs)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModePage1Ch" /> @Html.DisplayNameFor(model => model.SupportsModePage1Ch)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsOSSC" /> @Html.DisplayNameFor(model => model.SupportsOSSC)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsPWP" /> @Html.DisplayNameFor(model => model.SupportsPWP)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsSWPP" /> @Html.DisplayNameFor(model => model.SupportsSWPP)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsSecurDisc" /> @Html.DisplayNameFor(model => model.SupportsSecurDisc)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsSeparateVolume" /> @Html.DisplayNameFor(model => model.SupportsSeparateVolume)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsVCPS" /> @Html.DisplayNameFor(model => model.SupportsVCPS)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsWriteInhibitDCB" /> @Html.DisplayNameFor(model => model.SupportsWriteInhibitDCB)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsWriteProtectPAC" /> @Html.DisplayNameFor(model => model.SupportsWriteProtectPAC)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="VolumeLevels" class="control-label"></label>
|
||||
<input asp-for="VolumeLevels" class="form-control" />
|
||||
<span asp-validation-for="VolumeLevels" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BinaryData" class="control-label"></label>
|
||||
<input asp-for="BinaryData" class="form-control" />
|
||||
<span asp-validation-for="BinaryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
781
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Index.cshtml
Normal file
781
DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Index.cshtml
Normal file
@@ -0,0 +1,781 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.MmcFeatures>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.AACSVersion)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.AGIDs)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BindingNonceBlocks)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BlocksPerReadableUnit)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInSAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BufferUnderrunFreeInTAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanAudioScan)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanEject)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanEraseSector)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanExpandBDRESpareArea)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanFormat)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanFormatBDREWithoutSpare)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanFormatCert)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanFormatFRF)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanFormatQCert)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanFormatRRM)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanGenerateBindingNonce)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanLoad)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanMuteSeparateChannels)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanOverwriteSAOTrack)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanOverwriteTAOTrack)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanPlayCDAudio)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanPseudoOverwriteBDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadAllDualR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadAllDualRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBDRE1)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBDRE2)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBDROM)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBluBCA)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadCD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadCDMRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadCPRM_MKB)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDDCD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusMRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRDL)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDVDPlusRWDL)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDriveAACSCertificate)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadHDDVDRAM)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadInCDText)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDRE)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadOldBDROM)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReportDriveSerial)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReportMediaSerial)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteDDCDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteInSAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanTestWriteInTAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanUpgradeFirmware)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteBD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDRE1)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteBDRE2)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteBusEncryptedBlocks)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDMRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDRWCAV)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDSAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteCDTAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteCSSManagedDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDDCDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDDCDRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusMRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRDL)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDPlusRWDL)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDRDL)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteDVDRW)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteHDDVDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteHDDVDRAM)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteOldBDR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteOldBDRE)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWritePackedSubchannelInTAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteRWSubchannelInSAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteRWSubchannelInTAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteRaw)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteRawMultiSession)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanWriteRawSubchannelInTAO)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ChangerIsSideChangeCapable)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ChangerSlots)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ChangerSupportsDiscPresent)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CPRMVersion)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CSSVersion)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DBML)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DVDMultiRead)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.EmbeddedChanger)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ErrorRecoveryPage)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.FirmwareDate)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LoadingMechanismType)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Locked)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LogicalBlockSize)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MultiRead)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PhysicalInterfaceStandardNumber)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PreventJumper)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsAACS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsBusEncryption)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsC2)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsCPRM)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsCSS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsDAP)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsDeviceBusyEvent)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsHybridDiscs)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsModePage1Ch)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsOSSC)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsPWP)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsSWPP)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsSecurDisc)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsSeparateVolume)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsVCPS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsWriteInhibitDCB)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsWriteProtectPAC)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.VolumeLevels)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BinaryData)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.AACSVersion)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.AGIDs)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BindingNonceBlocks)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BlocksPerReadableUnit)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BufferUnderrunFreeInDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BufferUnderrunFreeInSAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BufferUnderrunFreeInTAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanAudioScan)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanEject)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanEraseSector)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanExpandBDRESpareArea)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanFormat)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanFormatBDREWithoutSpare)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanFormatCert)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanFormatFRF)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanFormatQCert)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanFormatRRM)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanGenerateBindingNonce)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanLoad)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanMuteSeparateChannels)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanOverwriteSAOTrack)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanOverwriteTAOTrack)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanPlayCDAudio)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanPseudoOverwriteBDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadAllDualR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadAllDualRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBDRE1)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBDRE2)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBDROM)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBluBCA)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadCD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadCDMRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadCPRM_MKB)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDDCD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDVDPlusMRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDVDPlusR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDVDPlusRDL)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDVDPlusRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDVDPlusRWDL)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDriveAACSCertificate)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadHDDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadHDDVDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadHDDVDRAM)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadLeadInCDText)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadOldBDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadOldBDRE)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadOldBDROM)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadSpareAreaInformation)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReportDriveSerial)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReportMediaSerial)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanTestWriteDDCDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanTestWriteDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanTestWriteInSAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanTestWriteInTAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanUpgradeFirmware)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteBD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteBDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteBDRE1)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteBDRE2)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteBusEncryptedBlocks)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteCDMRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteCDRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteCDRWCAV)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteCDSAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteCDTAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteCSSManagedDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDDCDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDDCDRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDPlusMRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDPlusR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDPlusRDL)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDPlusRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDPlusRWDL)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDRDL)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteDVDRW)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteHDDVDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteHDDVDRAM)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteOldBDR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteOldBDRE)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWritePackedSubchannelInTAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteRWSubchannelInSAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteRWSubchannelInTAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteRaw)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteRawMultiSession)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanWriteRawSubchannelInTAO)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ChangerIsSideChangeCapable)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ChangerSlots)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ChangerSupportsDiscPresent)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CPRMVersion)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CSSVersion)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DBML)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DVDMultiRead)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.EmbeddedChanger)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ErrorRecoveryPage)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.FirmwareDate)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LoadingMechanismType)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Locked)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LogicalBlockSize)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MultiRead)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PhysicalInterfaceStandardNumber)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PreventJumper)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsAACS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsBusEncryption)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsC2)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsCPRM)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsCSS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsDAP)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsDeviceBusyEvent)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsHybridDiscs)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsModePage1Ch)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsOSSC)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsPWP)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsSWPP)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsSecurDisc)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsSeparateVolume)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsVCPS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsWriteInhibitDCB)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsWriteProtectPAC)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.VolumeLevels)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BinaryData)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
59
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Create.cshtml
Normal file
59
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Create.cshtml
Normal file
@@ -0,0 +1,59 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcSd
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>MmcSd</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CID" class="control-label"></label>
|
||||
<input asp-for="CID" class="form-control" />
|
||||
<span asp-validation-for="CID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CSD" class="control-label"></label>
|
||||
<input asp-for="CSD" class="form-control" />
|
||||
<span asp-validation-for="CSD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="OCR" class="control-label"></label>
|
||||
<input asp-for="OCR" class="form-control" />
|
||||
<span asp-validation-for="OCR" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SCR" class="control-label"></label>
|
||||
<input asp-for="SCR" class="form-control" />
|
||||
<span asp-validation-for="SCR" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ExtendedCSD" class="control-label"></label>
|
||||
<input asp-for="ExtendedCSD" class="form-control" />
|
||||
<span asp-validation-for="ExtendedCSD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
60
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Delete.cshtml
Normal file
60
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Delete.cshtml
Normal file
@@ -0,0 +1,60 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcSd
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>MmcSd</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CSD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CSD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.OCR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.OCR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SCR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SCR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ExtendedCSD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ExtendedCSD)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
57
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Details.cshtml
Normal file
57
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Details.cshtml
Normal file
@@ -0,0 +1,57 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcSd
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>MmcSd</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CSD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CSD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.OCR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.OCR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SCR)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SCR)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ExtendedCSD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ExtendedCSD)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
60
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Edit.cshtml
Normal file
60
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Edit.cshtml
Normal file
@@ -0,0 +1,60 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.MmcSd
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>MmcSd</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="CID" class="control-label"></label>
|
||||
<input asp-for="CID" class="form-control" />
|
||||
<span asp-validation-for="CID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CSD" class="control-label"></label>
|
||||
<input asp-for="CSD" class="form-control" />
|
||||
<span asp-validation-for="CSD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="OCR" class="control-label"></label>
|
||||
<input asp-for="OCR" class="form-control" />
|
||||
<span asp-validation-for="OCR" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SCR" class="control-label"></label>
|
||||
<input asp-for="SCR" class="form-control" />
|
||||
<span asp-validation-for="SCR" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ExtendedCSD" class="control-label"></label>
|
||||
<input asp-for="ExtendedCSD" class="form-control" />
|
||||
<span asp-validation-for="ExtendedCSD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
67
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Index.cshtml
Normal file
67
DiscImageChef.Server/Areas/Admin/Views/MmcSds/Index.cshtml
Normal file
@@ -0,0 +1,67 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.MmcSd>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CID)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CSD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.OCR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SCR)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ExtendedCSD)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CID)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CSD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.OCR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SCR)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ExtendedCSD)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
64
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Create.cshtml
Normal file
64
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Create.cshtml
Normal file
@@ -0,0 +1,64 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Pcmcia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Pcmcia</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CIS" class="control-label"></label>
|
||||
<input asp-for="CIS" class="form-control" />
|
||||
<span asp-validation-for="CIS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Compliance" class="control-label"></label>
|
||||
<input asp-for="Compliance" class="form-control" />
|
||||
<span asp-validation-for="Compliance" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ManufacturerCode" class="control-label"></label>
|
||||
<input asp-for="ManufacturerCode" class="form-control" />
|
||||
<span asp-validation-for="ManufacturerCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CardCode" class="control-label"></label>
|
||||
<input asp-for="CardCode" class="form-control" />
|
||||
<span asp-validation-for="CardCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ProductName" class="control-label"></label>
|
||||
<input asp-for="ProductName" class="form-control" />
|
||||
<span asp-validation-for="ProductName" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
66
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Delete.cshtml
Normal file
66
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Delete.cshtml
Normal file
@@ -0,0 +1,66 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Pcmcia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Pcmcia</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CIS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CIS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Compliance)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Compliance)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ManufacturerCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ManufacturerCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CardCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CardCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ProductName)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ProductName)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,63 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Pcmcia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Pcmcia</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CIS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CIS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Compliance)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Compliance)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ManufacturerCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ManufacturerCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CardCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CardCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ProductName)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ProductName)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
65
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Edit.cshtml
Normal file
65
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Edit.cshtml
Normal file
@@ -0,0 +1,65 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Pcmcia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Pcmcia</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="CIS" class="control-label"></label>
|
||||
<input asp-for="CIS" class="form-control" />
|
||||
<span asp-validation-for="CIS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Compliance" class="control-label"></label>
|
||||
<input asp-for="Compliance" class="form-control" />
|
||||
<span asp-validation-for="Compliance" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ManufacturerCode" class="control-label"></label>
|
||||
<input asp-for="ManufacturerCode" class="form-control" />
|
||||
<span asp-validation-for="ManufacturerCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CardCode" class="control-label"></label>
|
||||
<input asp-for="CardCode" class="form-control" />
|
||||
<span asp-validation-for="CardCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ProductName" class="control-label"></label>
|
||||
<input asp-for="ProductName" class="form-control" />
|
||||
<span asp-validation-for="ProductName" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
73
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Index.cshtml
Normal file
73
DiscImageChef.Server/Areas/Admin/Views/Pcmcias/Index.cshtml
Normal file
@@ -0,0 +1,73 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.Pcmcia>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CIS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Compliance)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ManufacturerCode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CardCode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ProductName)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CIS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Compliance)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ManufacturerCode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CardCode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Manufacturer)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ProductName)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,64 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiMode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>ScsiMode</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumType" class="control-label"></label>
|
||||
<input asp-for="MediumType" class="form-control" />
|
||||
<span asp-validation-for="MediumType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="WriteProtected" /> @Html.DisplayNameFor(model => model.WriteProtected)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Speed" class="control-label"></label>
|
||||
<input asp-for="Speed" class="form-control" />
|
||||
<span asp-validation-for="Speed" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BufferedMode" class="control-label"></label>
|
||||
<input asp-for="BufferedMode" class="form-control" />
|
||||
<span asp-validation-for="BufferedMode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BlankCheckEnabled" /> @Html.DisplayNameFor(model => model.BlankCheckEnabled)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DPOandFUA" /> @Html.DisplayNameFor(model => model.DPOandFUA)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,66 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiMode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>ScsiMode</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.WriteProtected)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.WriteProtected)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Speed)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Speed)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferedMode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferedMode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlankCheckEnabled)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlankCheckEnabled)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DPOandFUA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DPOandFUA)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,63 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiMode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>ScsiMode</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.WriteProtected)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.WriteProtected)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Speed)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Speed)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BufferedMode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BufferedMode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlankCheckEnabled)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlankCheckEnabled)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DPOandFUA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DPOandFUA)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
65
DiscImageChef.Server/Areas/Admin/Views/ScsiModes/Edit.cshtml
Normal file
65
DiscImageChef.Server/Areas/Admin/Views/ScsiModes/Edit.cshtml
Normal file
@@ -0,0 +1,65 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiMode
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>ScsiMode</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumType" class="control-label"></label>
|
||||
<input asp-for="MediumType" class="form-control" />
|
||||
<span asp-validation-for="MediumType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="WriteProtected" /> @Html.DisplayNameFor(model => model.WriteProtected)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Speed" class="control-label"></label>
|
||||
<input asp-for="Speed" class="form-control" />
|
||||
<span asp-validation-for="Speed" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BufferedMode" class="control-label"></label>
|
||||
<input asp-for="BufferedMode" class="form-control" />
|
||||
<span asp-validation-for="BufferedMode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="BlankCheckEnabled" /> @Html.DisplayNameFor(model => model.BlankCheckEnabled)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DPOandFUA" /> @Html.DisplayNameFor(model => model.DPOandFUA)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,73 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.ScsiMode>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.WriteProtected)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Speed)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BufferedMode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BlankCheckEnabled)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DPOandFUA)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediumType)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.WriteProtected)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Speed)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BufferedMode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BlankCheckEnabled)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DPOandFUA)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,49 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiPage
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>ScsiPage</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="page" class="control-label"></label>
|
||||
<input asp-for="page" class="form-control" />
|
||||
<span asp-validation-for="page" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="subpage" class="control-label"></label>
|
||||
<input asp-for="subpage" class="form-control" />
|
||||
<span asp-validation-for="subpage" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="value" class="control-label"></label>
|
||||
<input asp-for="value" class="form-control" />
|
||||
<span asp-validation-for="value" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,48 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiPage
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>ScsiPage</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.page)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.page)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.subpage)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.subpage)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.value)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.value)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,45 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiPage
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>ScsiPage</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.page)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.page)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.subpage)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.subpage)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.value)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.value)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
50
DiscImageChef.Server/Areas/Admin/Views/ScsiPages/Edit.cshtml
Normal file
50
DiscImageChef.Server/Areas/Admin/Views/ScsiPages/Edit.cshtml
Normal file
@@ -0,0 +1,50 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.ScsiPage
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>ScsiPage</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="page" class="control-label"></label>
|
||||
<input asp-for="page" class="form-control" />
|
||||
<span asp-validation-for="page" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="subpage" class="control-label"></label>
|
||||
<input asp-for="subpage" class="form-control" />
|
||||
<span asp-validation-for="subpage" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="value" class="control-label"></label>
|
||||
<input asp-for="value" class="form-control" />
|
||||
<span asp-validation-for="value" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,55 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.ScsiPage>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.page)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.subpage)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.value)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.page)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.subpage)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.value)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
84
DiscImageChef.Server/Areas/Admin/Views/Scsis/Create.cshtml
Normal file
84
DiscImageChef.Server/Areas/Admin/Views/Scsis/Create.cshtml
Normal file
@@ -0,0 +1,84 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Scsi
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Scsi</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="InquiryData" class="control-label"></label>
|
||||
<input asp-for="InquiryData" class="form-control" />
|
||||
<span asp-validation-for="InquiryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModeSense6" /> @Html.DisplayNameFor(model => model.SupportsModeSense6)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModeSense10" /> @Html.DisplayNameFor(model => model.SupportsModeSense10)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModeSubpages" /> @Html.DisplayNameFor(model => model.SupportsModeSubpages)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense6Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense10Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6CurrentData" class="control-label"></label>
|
||||
<input asp-for="ModeSense6CurrentData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6CurrentData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10CurrentData" class="control-label"></label>
|
||||
<input asp-for="ModeSense10CurrentData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10CurrentData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6ChangeableData" class="control-label"></label>
|
||||
<input asp-for="ModeSense6ChangeableData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6ChangeableData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10ChangeableData" class="control-label"></label>
|
||||
<input asp-for="ModeSense10ChangeableData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10ChangeableData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
90
DiscImageChef.Server/Areas/Admin/Views/Scsis/Delete.cshtml
Normal file
90
DiscImageChef.Server/Areas/Admin/Views/Scsis/Delete.cshtml
Normal file
@@ -0,0 +1,90 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Scsi
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Scsi</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.InquiryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.InquiryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense6)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModeSense6)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense10)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModeSense10)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSubpages)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModeSubpages)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6CurrentData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6CurrentData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10CurrentData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10CurrentData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6ChangeableData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6ChangeableData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10ChangeableData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10ChangeableData)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
87
DiscImageChef.Server/Areas/Admin/Views/Scsis/Details.cshtml
Normal file
87
DiscImageChef.Server/Areas/Admin/Views/Scsis/Details.cshtml
Normal file
@@ -0,0 +1,87 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Scsi
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Scsi</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.InquiryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.InquiryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense6)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModeSense6)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense10)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModeSense10)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSubpages)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsModeSubpages)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6CurrentData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6CurrentData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10CurrentData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10CurrentData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6ChangeableData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6ChangeableData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10ChangeableData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10ChangeableData)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
85
DiscImageChef.Server/Areas/Admin/Views/Scsis/Edit.cshtml
Normal file
85
DiscImageChef.Server/Areas/Admin/Views/Scsis/Edit.cshtml
Normal file
@@ -0,0 +1,85 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Scsi
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Scsi</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="InquiryData" class="control-label"></label>
|
||||
<input asp-for="InquiryData" class="form-control" />
|
||||
<span asp-validation-for="InquiryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModeSense6" /> @Html.DisplayNameFor(model => model.SupportsModeSense6)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModeSense10" /> @Html.DisplayNameFor(model => model.SupportsModeSense10)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="SupportsModeSubpages" /> @Html.DisplayNameFor(model => model.SupportsModeSubpages)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense6Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense10Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6CurrentData" class="control-label"></label>
|
||||
<input asp-for="ModeSense6CurrentData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6CurrentData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10CurrentData" class="control-label"></label>
|
||||
<input asp-for="ModeSense10CurrentData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10CurrentData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6ChangeableData" class="control-label"></label>
|
||||
<input asp-for="ModeSense6ChangeableData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6ChangeableData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10ChangeableData" class="control-label"></label>
|
||||
<input asp-for="ModeSense10ChangeableData" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10ChangeableData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
97
DiscImageChef.Server/Areas/Admin/Views/Scsis/Index.cshtml
Normal file
97
DiscImageChef.Server/Areas/Admin/Views/Scsis/Index.cshtml
Normal file
@@ -0,0 +1,97 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.Scsi>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.InquiryData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense6)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense10)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSubpages)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense6CurrentData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense10CurrentData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense6ChangeableData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense10ChangeableData)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.InquiryData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsModeSense6)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsModeSense10)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsModeSubpages)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense6Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense10Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense6CurrentData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense10CurrentData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense6ChangeableData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense10ChangeableData)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
49
DiscImageChef.Server/Areas/Admin/Views/Sscs/Create.cshtml
Normal file
49
DiscImageChef.Server/Areas/Admin/Views/Sscs/Create.cshtml
Normal file
@@ -0,0 +1,49 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ssc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Ssc</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlockSizeGranularity" class="control-label"></label>
|
||||
<input asp-for="BlockSizeGranularity" class="form-control" />
|
||||
<span asp-validation-for="BlockSizeGranularity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MaxBlockLength" class="control-label"></label>
|
||||
<input asp-for="MaxBlockLength" class="form-control" />
|
||||
<span asp-validation-for="MaxBlockLength" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MinBlockLength" class="control-label"></label>
|
||||
<input asp-for="MinBlockLength" class="form-control" />
|
||||
<span asp-validation-for="MinBlockLength" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
48
DiscImageChef.Server/Areas/Admin/Views/Sscs/Delete.cshtml
Normal file
48
DiscImageChef.Server/Areas/Admin/Views/Sscs/Delete.cshtml
Normal file
@@ -0,0 +1,48 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ssc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Ssc</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlockSizeGranularity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlockSizeGranularity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MaxBlockLength)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MaxBlockLength)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MinBlockLength)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MinBlockLength)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
45
DiscImageChef.Server/Areas/Admin/Views/Sscs/Details.cshtml
Normal file
45
DiscImageChef.Server/Areas/Admin/Views/Sscs/Details.cshtml
Normal file
@@ -0,0 +1,45 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ssc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Ssc</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlockSizeGranularity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlockSizeGranularity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MaxBlockLength)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MaxBlockLength)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MinBlockLength)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MinBlockLength)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
50
DiscImageChef.Server/Areas/Admin/Views/Sscs/Edit.cshtml
Normal file
50
DiscImageChef.Server/Areas/Admin/Views/Sscs/Edit.cshtml
Normal file
@@ -0,0 +1,50 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Ssc
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Ssc</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="BlockSizeGranularity" class="control-label"></label>
|
||||
<input asp-for="BlockSizeGranularity" class="form-control" />
|
||||
<span asp-validation-for="BlockSizeGranularity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MaxBlockLength" class="control-label"></label>
|
||||
<input asp-for="MaxBlockLength" class="form-control" />
|
||||
<span asp-validation-for="MaxBlockLength" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MinBlockLength" class="control-label"></label>
|
||||
<input asp-for="MinBlockLength" class="form-control" />
|
||||
<span asp-validation-for="MinBlockLength" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
55
DiscImageChef.Server/Areas/Admin/Views/Sscs/Index.cshtml
Normal file
55
DiscImageChef.Server/Areas/Admin/Views/Sscs/Index.cshtml
Normal file
@@ -0,0 +1,55 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.Ssc>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BlockSizeGranularity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MaxBlockLength)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MinBlockLength)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BlockSizeGranularity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MaxBlockLength)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MinBlockLength)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,94 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.SupportedDensity
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>SupportedDensity</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PrimaryCode" class="control-label"></label>
|
||||
<input asp-for="PrimaryCode" class="form-control" />
|
||||
<span asp-validation-for="PrimaryCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SecondaryCode" class="control-label"></label>
|
||||
<input asp-for="SecondaryCode" class="form-control" />
|
||||
<span asp-validation-for="SecondaryCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="Writable" /> @Html.DisplayNameFor(model => model.Writable)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="Duplicate" /> @Html.DisplayNameFor(model => model.Duplicate)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DefaultDensity" /> @Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BitsPerMm" class="control-label"></label>
|
||||
<input asp-for="BitsPerMm" class="form-control" />
|
||||
<span asp-validation-for="BitsPerMm" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Width" class="control-label"></label>
|
||||
<input asp-for="Width" class="form-control" />
|
||||
<span asp-validation-for="Width" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Tracks" class="control-label"></label>
|
||||
<input asp-for="Tracks" class="form-control" />
|
||||
<span asp-validation-for="Tracks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Capacity" class="control-label"></label>
|
||||
<input asp-for="Capacity" class="form-control" />
|
||||
<span asp-validation-for="Capacity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Organization" class="control-label"></label>
|
||||
<input asp-for="Organization" class="form-control" />
|
||||
<span asp-validation-for="Organization" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Name" class="control-label"></label>
|
||||
<input asp-for="Name" class="form-control" />
|
||||
<span asp-validation-for="Name" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Description" class="control-label"></label>
|
||||
<input asp-for="Description" class="form-control" />
|
||||
<span asp-validation-for="Description" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,102 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.SupportedDensity
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>SupportedDensity</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PrimaryCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PrimaryCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SecondaryCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SecondaryCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Writable)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Writable)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Duplicate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Duplicate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DefaultDensity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BitsPerMm)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BitsPerMm)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Width)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Width)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Tracks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Tracks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Capacity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Capacity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Organization)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Organization)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Name)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Name)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Description)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Description)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,99 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.SupportedDensity
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>SupportedDensity</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PrimaryCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PrimaryCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SecondaryCode)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SecondaryCode)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Writable)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Writable)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Duplicate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Duplicate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DefaultDensity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BitsPerMm)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BitsPerMm)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Width)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Width)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Tracks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Tracks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Capacity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Capacity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Organization)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Organization)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Name)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Name)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Description)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Description)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,95 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.SupportedDensity
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>SupportedDensity</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="PrimaryCode" class="control-label"></label>
|
||||
<input asp-for="PrimaryCode" class="form-control" />
|
||||
<span asp-validation-for="PrimaryCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SecondaryCode" class="control-label"></label>
|
||||
<input asp-for="SecondaryCode" class="form-control" />
|
||||
<span asp-validation-for="SecondaryCode" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="Writable" /> @Html.DisplayNameFor(model => model.Writable)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="Duplicate" /> @Html.DisplayNameFor(model => model.Duplicate)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="DefaultDensity" /> @Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BitsPerMm" class="control-label"></label>
|
||||
<input asp-for="BitsPerMm" class="form-control" />
|
||||
<span asp-validation-for="BitsPerMm" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Width" class="control-label"></label>
|
||||
<input asp-for="Width" class="form-control" />
|
||||
<span asp-validation-for="Width" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Tracks" class="control-label"></label>
|
||||
<input asp-for="Tracks" class="form-control" />
|
||||
<span asp-validation-for="Tracks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Capacity" class="control-label"></label>
|
||||
<input asp-for="Capacity" class="form-control" />
|
||||
<span asp-validation-for="Capacity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Organization" class="control-label"></label>
|
||||
<input asp-for="Organization" class="form-control" />
|
||||
<span asp-validation-for="Organization" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Name" class="control-label"></label>
|
||||
<input asp-for="Name" class="form-control" />
|
||||
<span asp-validation-for="Name" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Description" class="control-label"></label>
|
||||
<input asp-for="Description" class="form-control" />
|
||||
<span asp-validation-for="Description" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,109 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.SupportedDensity>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PrimaryCode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SecondaryCode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Writable)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Duplicate)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BitsPerMm)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Width)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Tracks)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Capacity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Organization)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Name)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Description)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PrimaryCode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SecondaryCode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Writable)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Duplicate)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DefaultDensity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BitsPerMm)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Width)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Tracks)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Capacity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Organization)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Name)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Description)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,784 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>TestedMedia</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="IdentifyData" class="control-label"></label>
|
||||
<input asp-for="IdentifyData" class="form-control" />
|
||||
<span asp-validation-for="IdentifyData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Blocks" class="control-label"></label>
|
||||
<input asp-for="Blocks" class="form-control" />
|
||||
<span asp-validation-for="Blocks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlockSize" class="control-label"></label>
|
||||
<input asp-for="BlockSize" class="form-control" />
|
||||
<span asp-validation-for="BlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadAACS" class="control-label"></label>
|
||||
<input asp-for="CanReadAACS" class="form-control" />
|
||||
<span asp-validation-for="CanReadAACS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadADIP" class="control-label"></label>
|
||||
<input asp-for="CanReadADIP" class="form-control" />
|
||||
<span asp-validation-for="CanReadADIP" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadATIP" class="control-label"></label>
|
||||
<input asp-for="CanReadATIP" class="form-control" />
|
||||
<span asp-validation-for="CanReadATIP" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadBCA" class="control-label"></label>
|
||||
<input asp-for="CanReadBCA" class="form-control" />
|
||||
<span asp-validation-for="CanReadBCA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadC2Pointers" class="control-label"></label>
|
||||
<input asp-for="CanReadC2Pointers" class="form-control" />
|
||||
<span asp-validation-for="CanReadC2Pointers" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadCMI" class="control-label"></label>
|
||||
<input asp-for="CanReadCMI" class="form-control" />
|
||||
<span asp-validation-for="CanReadCMI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadCorrectedSubchannel" class="control-label"></label>
|
||||
<input asp-for="CanReadCorrectedSubchannel" class="form-control" />
|
||||
<span asp-validation-for="CanReadCorrectedSubchannel" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadCorrectedSubchannelWithC2" class="control-label"></label>
|
||||
<input asp-for="CanReadCorrectedSubchannelWithC2" class="form-control" />
|
||||
<span asp-validation-for="CanReadCorrectedSubchannelWithC2" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDCB" class="control-label"></label>
|
||||
<input asp-for="CanReadDCB" class="form-control" />
|
||||
<span asp-validation-for="CanReadDCB" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDDS" class="control-label"></label>
|
||||
<input asp-for="CanReadDDS" class="form-control" />
|
||||
<span asp-validation-for="CanReadDDS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDMI" class="control-label"></label>
|
||||
<input asp-for="CanReadDMI" class="form-control" />
|
||||
<span asp-validation-for="CanReadDMI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDiscInformation" class="control-label"></label>
|
||||
<input asp-for="CanReadDiscInformation" class="form-control" />
|
||||
<span asp-validation-for="CanReadDiscInformation" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadFullTOC" class="control-label"></label>
|
||||
<input asp-for="CanReadFullTOC" class="form-control" />
|
||||
<span asp-validation-for="CanReadFullTOC" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadHDCMI" class="control-label"></label>
|
||||
<input asp-for="CanReadHDCMI" class="form-control" />
|
||||
<span asp-validation-for="CanReadHDCMI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadLayerCapacity" class="control-label"></label>
|
||||
<input asp-for="CanReadLayerCapacity" class="form-control" />
|
||||
<span asp-validation-for="CanReadLayerCapacity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadFirstTrackPreGap" class="control-label"></label>
|
||||
<input asp-for="CanReadFirstTrackPreGap" class="form-control" />
|
||||
<span asp-validation-for="CanReadFirstTrackPreGap" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadLeadIn" class="control-label"></label>
|
||||
<input asp-for="CanReadLeadIn" class="form-control" />
|
||||
<span asp-validation-for="CanReadLeadIn" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadLeadOut" class="control-label"></label>
|
||||
<input asp-for="CanReadLeadOut" class="form-control" />
|
||||
<span asp-validation-for="CanReadLeadOut" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadMediaID" class="control-label"></label>
|
||||
<input asp-for="CanReadMediaID" class="form-control" />
|
||||
<span asp-validation-for="CanReadMediaID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadMediaSerial" class="control-label"></label>
|
||||
<input asp-for="CanReadMediaSerial" class="form-control" />
|
||||
<span asp-validation-for="CanReadMediaSerial" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPAC" class="control-label"></label>
|
||||
<input asp-for="CanReadPAC" class="form-control" />
|
||||
<span asp-validation-for="CanReadPAC" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPFI" class="control-label"></label>
|
||||
<input asp-for="CanReadPFI" class="form-control" />
|
||||
<span asp-validation-for="CanReadPFI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPMA" class="control-label"></label>
|
||||
<input asp-for="CanReadPMA" class="form-control" />
|
||||
<span asp-validation-for="CanReadPMA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPQSubchannel" class="control-label"></label>
|
||||
<input asp-for="CanReadPQSubchannel" class="form-control" />
|
||||
<span asp-validation-for="CanReadPQSubchannel" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPQSubchannelWithC2" class="control-label"></label>
|
||||
<input asp-for="CanReadPQSubchannelWithC2" class="form-control" />
|
||||
<span asp-validation-for="CanReadPQSubchannelWithC2" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPRI" class="control-label"></label>
|
||||
<input asp-for="CanReadPRI" class="form-control" />
|
||||
<span asp-validation-for="CanReadPRI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadRWSubchannel" class="control-label"></label>
|
||||
<input asp-for="CanReadRWSubchannel" class="form-control" />
|
||||
<span asp-validation-for="CanReadRWSubchannel" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadRWSubchannelWithC2" class="control-label"></label>
|
||||
<input asp-for="CanReadRWSubchannelWithC2" class="form-control" />
|
||||
<span asp-validation-for="CanReadRWSubchannelWithC2" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadRecordablePFI" class="control-label"></label>
|
||||
<input asp-for="CanReadRecordablePFI" class="form-control" />
|
||||
<span asp-validation-for="CanReadRecordablePFI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadSpareAreaInformation" class="control-label"></label>
|
||||
<input asp-for="CanReadSpareAreaInformation" class="form-control" />
|
||||
<span asp-validation-for="CanReadSpareAreaInformation" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadTOC" class="control-label"></label>
|
||||
<input asp-for="CanReadTOC" class="form-control" />
|
||||
<span asp-validation-for="CanReadTOC" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Density" class="control-label"></label>
|
||||
<input asp-for="Density" class="form-control" />
|
||||
<span asp-validation-for="Density" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LongBlockSize" class="control-label"></label>
|
||||
<input asp-for="LongBlockSize" class="form-control" />
|
||||
<span asp-validation-for="LongBlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="MediaIsRecognized" /> @Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumType" class="control-label"></label>
|
||||
<input asp-for="MediumType" class="form-control" />
|
||||
<span asp-validation-for="MediumType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumTypeName" class="control-label"></label>
|
||||
<input asp-for="MediumTypeName" class="form-control" />
|
||||
<span asp-validation-for="MediumTypeName" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Model" class="control-label"></label>
|
||||
<input asp-for="Model" class="form-control" />
|
||||
<span asp-validation-for="Model" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsHLDTSTReadRawDVD" class="control-label"></label>
|
||||
<input asp-for="SupportsHLDTSTReadRawDVD" class="form-control" />
|
||||
<span asp-validation-for="SupportsHLDTSTReadRawDVD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsNECReadCDDA" class="control-label"></label>
|
||||
<input asp-for="SupportsNECReadCDDA" class="form-control" />
|
||||
<span asp-validation-for="SupportsNECReadCDDA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPioneerReadCDDA" class="control-label"></label>
|
||||
<input asp-for="SupportsPioneerReadCDDA" class="form-control" />
|
||||
<span asp-validation-for="SupportsPioneerReadCDDA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPioneerReadCDDAMSF" class="control-label"></label>
|
||||
<input asp-for="SupportsPioneerReadCDDAMSF" class="form-control" />
|
||||
<span asp-validation-for="SupportsPioneerReadCDDAMSF" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPlextorReadCDDA" class="control-label"></label>
|
||||
<input asp-for="SupportsPlextorReadCDDA" class="form-control" />
|
||||
<span asp-validation-for="SupportsPlextorReadCDDA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPlextorReadRawDVD" class="control-label"></label>
|
||||
<input asp-for="SupportsPlextorReadRawDVD" class="form-control" />
|
||||
<span asp-validation-for="SupportsPlextorReadRawDVD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead10" class="control-label"></label>
|
||||
<input asp-for="SupportsRead10" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead10" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead12" class="control-label"></label>
|
||||
<input asp-for="SupportsRead12" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead12" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead16" class="control-label"></label>
|
||||
<input asp-for="SupportsRead16" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead16" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead6" class="control-label"></label>
|
||||
<input asp-for="SupportsRead6" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead6" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCapacity16" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCapacity16" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCapacity16" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCapacity" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCapacity" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCapacity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCd" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCd" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCd" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCdMsf" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCdMsf" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCdMsf" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCdRaw" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCdRaw" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCdRaw" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCdMsfRaw" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCdMsfRaw" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCdMsfRaw" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLong16" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLong16" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLong16" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLong" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLong" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLong" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense6Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense10Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LBASectors" class="control-label"></label>
|
||||
<input asp-for="LBASectors" class="form-control" />
|
||||
<span asp-validation-for="LBASectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LBA48Sectors" class="control-label"></label>
|
||||
<input asp-for="LBA48Sectors" class="form-control" />
|
||||
<span asp-validation-for="LBA48Sectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LogicalAlignment" class="control-label"></label>
|
||||
<input asp-for="LogicalAlignment" class="form-control" />
|
||||
<span asp-validation-for="LogicalAlignment" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="NominalRotationRate" class="control-label"></label>
|
||||
<input asp-for="NominalRotationRate" class="form-control" />
|
||||
<span asp-validation-for="NominalRotationRate" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PhysicalBlockSize" class="control-label"></label>
|
||||
<input asp-for="PhysicalBlockSize" class="form-control" />
|
||||
<span asp-validation-for="PhysicalBlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SolidStateDevice" class="control-label"></label>
|
||||
<input asp-for="SolidStateDevice" class="form-control" />
|
||||
<span asp-validation-for="SolidStateDevice" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="UnformattedBPT" class="control-label"></label>
|
||||
<input asp-for="UnformattedBPT" class="form-control" />
|
||||
<span asp-validation-for="UnformattedBPT" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="UnformattedBPS" class="control-label"></label>
|
||||
<input asp-for="UnformattedBPS" class="form-control" />
|
||||
<span asp-validation-for="UnformattedBPS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaRetryLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaRetryLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaRetryLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadRetryLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadRetryLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadRetryLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLongLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLongLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLongLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLongRetryLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLongRetryLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLongRetryLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsSeekLba" class="control-label"></label>
|
||||
<input asp-for="SupportsSeekLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsSeekLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaLba48" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaLba48" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaLba48" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLba48" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLba48" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLba48" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDma" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDma" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDma" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaRetry" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaRetry" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaRetry" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadRetry" class="control-label"></label>
|
||||
<input asp-for="SupportsReadRetry" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadRetry" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadSectors" class="control-label"></label>
|
||||
<input asp-for="SupportsReadSectors" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadSectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLongRetry" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLongRetry" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLongRetry" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsSeek" class="control-label"></label>
|
||||
<input asp-for="SupportsSeek" class="form-control" />
|
||||
<span asp-validation-for="SupportsSeek" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadingIntersessionLeadIn" class="control-label"></label>
|
||||
<input asp-for="CanReadingIntersessionLeadIn" class="form-control" />
|
||||
<span asp-validation-for="CanReadingIntersessionLeadIn" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadingIntersessionLeadOut" class="control-label"></label>
|
||||
<input asp-for="CanReadingIntersessionLeadOut" class="form-control" />
|
||||
<span asp-validation-for="CanReadingIntersessionLeadOut" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="IntersessionLeadInData" class="control-label"></label>
|
||||
<input asp-for="IntersessionLeadInData" class="form-control" />
|
||||
<span asp-validation-for="IntersessionLeadInData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="IntersessionLeadOutData" class="control-label"></label>
|
||||
<input asp-for="IntersessionLeadOutData" class="form-control" />
|
||||
<span asp-validation-for="IntersessionLeadOutData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read6Data" class="control-label"></label>
|
||||
<input asp-for="Read6Data" class="form-control" />
|
||||
<span asp-validation-for="Read6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read10Data" class="control-label"></label>
|
||||
<input asp-for="Read10Data" class="form-control" />
|
||||
<span asp-validation-for="Read10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read12Data" class="control-label"></label>
|
||||
<input asp-for="Read12Data" class="form-control" />
|
||||
<span asp-validation-for="Read12Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read16Data" class="control-label"></label>
|
||||
<input asp-for="Read16Data" class="form-control" />
|
||||
<span asp-validation-for="Read16Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLong10Data" class="control-label"></label>
|
||||
<input asp-for="ReadLong10Data" class="form-control" />
|
||||
<span asp-validation-for="ReadLong10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLong16Data" class="control-label"></label>
|
||||
<input asp-for="ReadLong16Data" class="form-control" />
|
||||
<span asp-validation-for="ReadLong16Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadSectorsData" class="control-label"></label>
|
||||
<input asp-for="ReadSectorsData" class="form-control" />
|
||||
<span asp-validation-for="ReadSectorsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadSectorsRetryData" class="control-label"></label>
|
||||
<input asp-for="ReadSectorsRetryData" class="form-control" />
|
||||
<span asp-validation-for="ReadSectorsRetryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaRetryData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaRetryData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaRetryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadRetryLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadRetryLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadRetryLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaRetryLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaRetryLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaRetryLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLba48Data" class="control-label"></label>
|
||||
<input asp-for="ReadLba48Data" class="form-control" />
|
||||
<span asp-validation-for="ReadLba48Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaLba48Data" class="control-label"></label>
|
||||
<input asp-for="ReadDmaLba48Data" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaLba48Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongData" class="control-label"></label>
|
||||
<input asp-for="ReadLongData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongRetryData" class="control-label"></label>
|
||||
<input asp-for="ReadLongRetryData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongRetryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadLongLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongRetryLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadLongRetryLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongRetryLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="TocData" class="control-label"></label>
|
||||
<input asp-for="TocData" class="form-control" />
|
||||
<span asp-validation-for="TocData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="FullTocData" class="control-label"></label>
|
||||
<input asp-for="FullTocData" class="form-control" />
|
||||
<span asp-validation-for="FullTocData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AtipData" class="control-label"></label>
|
||||
<input asp-for="AtipData" class="form-control" />
|
||||
<span asp-validation-for="AtipData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PmaData" class="control-label"></label>
|
||||
<input asp-for="PmaData" class="form-control" />
|
||||
<span asp-validation-for="PmaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdData" class="control-label"></label>
|
||||
<input asp-for="ReadCdData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdMsfData" class="control-label"></label>
|
||||
<input asp-for="ReadCdMsfData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdMsfData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdFullData" class="control-label"></label>
|
||||
<input asp-for="ReadCdFullData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdFullData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdMsfFullData" class="control-label"></label>
|
||||
<input asp-for="ReadCdMsfFullData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdMsfFullData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Track1PregapData" class="control-label"></label>
|
||||
<input asp-for="Track1PregapData" class="form-control" />
|
||||
<span asp-validation-for="Track1PregapData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LeadInData" class="control-label"></label>
|
||||
<input asp-for="LeadInData" class="form-control" />
|
||||
<span asp-validation-for="LeadInData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LeadOutData" class="control-label"></label>
|
||||
<input asp-for="LeadOutData" class="form-control" />
|
||||
<span asp-validation-for="LeadOutData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="C2PointersData" class="control-label"></label>
|
||||
<input asp-for="C2PointersData" class="form-control" />
|
||||
<span asp-validation-for="C2PointersData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PQSubchannelData" class="control-label"></label>
|
||||
<input asp-for="PQSubchannelData" class="form-control" />
|
||||
<span asp-validation-for="PQSubchannelData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="RWSubchannelData" class="control-label"></label>
|
||||
<input asp-for="RWSubchannelData" class="form-control" />
|
||||
<span asp-validation-for="RWSubchannelData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CorrectedSubchannelData" class="control-label"></label>
|
||||
<input asp-for="CorrectedSubchannelData" class="form-control" />
|
||||
<span asp-validation-for="CorrectedSubchannelData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PQSubchannelWithC2Data" class="control-label"></label>
|
||||
<input asp-for="PQSubchannelWithC2Data" class="form-control" />
|
||||
<span asp-validation-for="PQSubchannelWithC2Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="RWSubchannelWithC2Data" class="control-label"></label>
|
||||
<input asp-for="RWSubchannelWithC2Data" class="form-control" />
|
||||
<span asp-validation-for="RWSubchannelWithC2Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CorrectedSubchannelWithC2Data" class="control-label"></label>
|
||||
<input asp-for="CorrectedSubchannelWithC2Data" class="form-control" />
|
||||
<span asp-validation-for="CorrectedSubchannelWithC2Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PfiData" class="control-label"></label>
|
||||
<input asp-for="PfiData" class="form-control" />
|
||||
<span asp-validation-for="PfiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DmiData" class="control-label"></label>
|
||||
<input asp-for="DmiData" class="form-control" />
|
||||
<span asp-validation-for="DmiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CmiData" class="control-label"></label>
|
||||
<input asp-for="CmiData" class="form-control" />
|
||||
<span asp-validation-for="CmiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdBcaData" class="control-label"></label>
|
||||
<input asp-for="DvdBcaData" class="form-control" />
|
||||
<span asp-validation-for="DvdBcaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdAacsData" class="control-label"></label>
|
||||
<input asp-for="DvdAacsData" class="form-control" />
|
||||
<span asp-validation-for="DvdAacsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdDdsData" class="control-label"></label>
|
||||
<input asp-for="DvdDdsData" class="form-control" />
|
||||
<span asp-validation-for="DvdDdsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdSaiData" class="control-label"></label>
|
||||
<input asp-for="DvdSaiData" class="form-control" />
|
||||
<span asp-validation-for="DvdSaiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PriData" class="control-label"></label>
|
||||
<input asp-for="PriData" class="form-control" />
|
||||
<span asp-validation-for="PriData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="EmbossedPfiData" class="control-label"></label>
|
||||
<input asp-for="EmbossedPfiData" class="form-control" />
|
||||
<span asp-validation-for="EmbossedPfiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AdipData" class="control-label"></label>
|
||||
<input asp-for="AdipData" class="form-control" />
|
||||
<span asp-validation-for="AdipData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DcbData" class="control-label"></label>
|
||||
<input asp-for="DcbData" class="form-control" />
|
||||
<span asp-validation-for="DcbData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="HdCmiData" class="control-label"></label>
|
||||
<input asp-for="HdCmiData" class="form-control" />
|
||||
<span asp-validation-for="HdCmiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdLayerData" class="control-label"></label>
|
||||
<input asp-for="DvdLayerData" class="form-control" />
|
||||
<span asp-validation-for="DvdLayerData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluBcaData" class="control-label"></label>
|
||||
<input asp-for="BluBcaData" class="form-control" />
|
||||
<span asp-validation-for="BluBcaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluDdsData" class="control-label"></label>
|
||||
<input asp-for="BluDdsData" class="form-control" />
|
||||
<span asp-validation-for="BluDdsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluSaiData" class="control-label"></label>
|
||||
<input asp-for="BluSaiData" class="form-control" />
|
||||
<span asp-validation-for="BluSaiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluDiData" class="control-label"></label>
|
||||
<input asp-for="BluDiData" class="form-control" />
|
||||
<span asp-validation-for="BluDiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluPacData" class="control-label"></label>
|
||||
<input asp-for="BluPacData" class="form-control" />
|
||||
<span asp-validation-for="BluPacData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PlextorReadCddaData" class="control-label"></label>
|
||||
<input asp-for="PlextorReadCddaData" class="form-control" />
|
||||
<span asp-validation-for="PlextorReadCddaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PioneerReadCddaData" class="control-label"></label>
|
||||
<input asp-for="PioneerReadCddaData" class="form-control" />
|
||||
<span asp-validation-for="PioneerReadCddaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PioneerReadCddaMsfData" class="control-label"></label>
|
||||
<input asp-for="PioneerReadCddaMsfData" class="form-control" />
|
||||
<span asp-validation-for="PioneerReadCddaMsfData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="NecReadCddaData" class="control-label"></label>
|
||||
<input asp-for="NecReadCddaData" class="form-control" />
|
||||
<span asp-validation-for="NecReadCddaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PlextorReadRawDVDData" class="control-label"></label>
|
||||
<input asp-for="PlextorReadRawDVDData" class="form-control" />
|
||||
<span asp-validation-for="PlextorReadRawDVDData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="HLDTSTReadRawDVDData" class="control-label"></label>
|
||||
<input asp-for="HLDTSTReadRawDVDData" class="form-control" />
|
||||
<span asp-validation-for="HLDTSTReadRawDVDData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,930 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>TestedMedia</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.IdentifyData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.IdentifyData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Blocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Blocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadAACS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadAACS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadADIP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadADIP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadATIP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadATIP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBCA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBCA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadC2Pointers)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadC2Pointers)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCMI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCMI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCorrectedSubchannel)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCorrectedSubchannel)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCorrectedSubchannelWithC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCorrectedSubchannelWithC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDCB)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDCB)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDDS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDDS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDMI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDMI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDiscInformation)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDiscInformation)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadFullTOC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadFullTOC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDCMI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDCMI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLayerCapacity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLayerCapacity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadFirstTrackPreGap)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadFirstTrackPreGap)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadIn)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLeadIn)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadOut)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLeadOut)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadMediaID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadMediaSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPAC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPAC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPFI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPFI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPMA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPMA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPQSubchannel)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPQSubchannel)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPQSubchannelWithC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPQSubchannelWithC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPRI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPRI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadRWSubchannel)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadRWSubchannel)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadRWSubchannelWithC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadRWSubchannelWithC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadRecordablePFI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadRecordablePFI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadSpareAreaInformation)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadTOC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadTOC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Density)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LongBlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LongBlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediaIsRecognized)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumTypeName)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumTypeName)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Model)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Model)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsHLDTSTReadRawDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsHLDTSTReadRawDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsNECReadCDDA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsNECReadCDDA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPioneerReadCDDA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPioneerReadCDDA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPioneerReadCDDAMSF)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPioneerReadCDDAMSF)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPlextorReadCDDA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPlextorReadCDDA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPlextorReadRawDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPlextorReadRawDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead10)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead10)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead12)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead12)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead16)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead16)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead6)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead6)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCapacity16)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCapacity16)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCapacity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCapacity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCd)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCd)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdMsf)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCdMsf)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdRaw)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCdRaw)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdMsfRaw)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCdMsfRaw)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLong16)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLong16)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLong)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLong)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LBASectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LBASectors)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LBA48Sectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LBA48Sectors)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LogicalAlignment)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LogicalAlignment)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.NominalRotationRate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.NominalRotationRate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PhysicalBlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PhysicalBlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SolidStateDevice)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SolidStateDevice)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.UnformattedBPT)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.UnformattedBPT)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.UnformattedBPS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.UnformattedBPS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaRetryLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaRetryLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadRetryLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadRetryLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLongLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongRetryLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLongRetryLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSeekLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSeekLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaLba48)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaLba48)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLba48)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLba48)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDma)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDma)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaRetry)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaRetry)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadRetry)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadRetry)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadSectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadSectors)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongRetry)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLongRetry)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSeek)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSeek)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadingIntersessionLeadIn)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadingIntersessionLeadIn)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadingIntersessionLeadOut)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadingIntersessionLeadOut)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.IntersessionLeadInData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.IntersessionLeadInData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.IntersessionLeadOutData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.IntersessionLeadOutData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read12Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read12Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read16Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read16Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLong10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLong10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLong16Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLong16Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadSectorsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadSectorsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadSectorsRetryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadSectorsRetryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaRetryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaRetryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadRetryLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadRetryLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaRetryLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaRetryLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLba48Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLba48Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaLba48Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaLba48Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongRetryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongRetryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongRetryLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongRetryLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.TocData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.TocData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.FullTocData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.FullTocData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AtipData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AtipData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PmaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PmaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdMsfData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdMsfData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdFullData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdFullData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdMsfFullData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdMsfFullData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Track1PregapData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Track1PregapData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LeadInData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LeadInData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LeadOutData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LeadOutData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.C2PointersData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.C2PointersData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PQSubchannelData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PQSubchannelData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RWSubchannelData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RWSubchannelData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CorrectedSubchannelData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CorrectedSubchannelData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PQSubchannelWithC2Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PQSubchannelWithC2Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RWSubchannelWithC2Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RWSubchannelWithC2Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CorrectedSubchannelWithC2Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CorrectedSubchannelWithC2Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PfiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PfiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DmiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DmiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CmiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CmiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdBcaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdBcaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdAacsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdAacsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdDdsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdDdsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdSaiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdSaiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PriData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PriData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.EmbossedPfiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.EmbossedPfiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AdipData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AdipData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DcbData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DcbData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.HdCmiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.HdCmiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdLayerData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdLayerData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluBcaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluBcaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluDdsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluDdsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluSaiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluSaiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluDiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluDiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluPacData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluPacData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PlextorReadCddaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PlextorReadCddaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PioneerReadCddaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PioneerReadCddaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PioneerReadCddaMsfData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PioneerReadCddaMsfData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.NecReadCddaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.NecReadCddaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PlextorReadRawDVDData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PlextorReadRawDVDData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.HLDTSTReadRawDVDData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.HLDTSTReadRawDVDData)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,927 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>TestedMedia</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.IdentifyData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.IdentifyData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Blocks)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Blocks)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadAACS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadAACS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadADIP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadADIP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadATIP)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadATIP)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadBCA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadBCA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadC2Pointers)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadC2Pointers)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCMI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCMI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCorrectedSubchannel)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCorrectedSubchannel)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadCorrectedSubchannelWithC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadCorrectedSubchannelWithC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDCB)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDCB)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDDS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDDS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDMI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDMI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadDiscInformation)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadDiscInformation)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadFullTOC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadFullTOC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadHDCMI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadHDCMI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLayerCapacity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLayerCapacity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadFirstTrackPreGap)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadFirstTrackPreGap)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadIn)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLeadIn)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadOut)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadLeadOut)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadMediaID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadMediaSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPAC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPAC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPFI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPFI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPMA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPMA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPQSubchannel)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPQSubchannel)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPQSubchannelWithC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPQSubchannelWithC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadPRI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadPRI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadRWSubchannel)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadRWSubchannel)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadRWSubchannelWithC2)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadRWSubchannelWithC2)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadRecordablePFI)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadRecordablePFI)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadSpareAreaInformation)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadTOC)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadTOC)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Density)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LongBlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LongBlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediaIsRecognized)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumTypeName)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumTypeName)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Model)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Model)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsHLDTSTReadRawDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsHLDTSTReadRawDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsNECReadCDDA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsNECReadCDDA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPioneerReadCDDA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPioneerReadCDDA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPioneerReadCDDAMSF)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPioneerReadCDDAMSF)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPlextorReadCDDA)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPlextorReadCDDA)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsPlextorReadRawDVD)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsPlextorReadRawDVD)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead10)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead10)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead12)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead12)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead16)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead16)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsRead6)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsRead6)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCapacity16)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCapacity16)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCapacity)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCapacity)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCd)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCd)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdMsf)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCdMsf)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdRaw)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCdRaw)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdMsfRaw)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadCdMsfRaw)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLong16)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLong16)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLong)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLong)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LBASectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LBASectors)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LBA48Sectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LBA48Sectors)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LogicalAlignment)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LogicalAlignment)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.NominalRotationRate)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.NominalRotationRate)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PhysicalBlockSize)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PhysicalBlockSize)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SolidStateDevice)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SolidStateDevice)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.UnformattedBPT)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.UnformattedBPT)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.UnformattedBPS)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.UnformattedBPS)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaRetryLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaRetryLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadRetryLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadRetryLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLongLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongRetryLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLongRetryLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSeekLba)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSeekLba)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaLba48)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaLba48)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLba48)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLba48)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDma)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDma)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaRetry)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadDmaRetry)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadRetry)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadRetry)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadSectors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadSectors)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongRetry)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsReadLongRetry)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.SupportsSeek)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.SupportsSeek)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadingIntersessionLeadIn)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadingIntersessionLeadIn)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadingIntersessionLeadOut)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadingIntersessionLeadOut)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.IntersessionLeadInData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.IntersessionLeadInData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.IntersessionLeadOutData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.IntersessionLeadOutData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read12Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read12Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Read16Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Read16Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLong10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLong10Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLong16Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLong16Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadSectorsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadSectorsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadSectorsRetryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadSectorsRetryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaRetryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaRetryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadRetryLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadRetryLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaRetryLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaRetryLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLba48Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLba48Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadDmaLba48Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadDmaLba48Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongRetryData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongRetryData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadLongRetryLbaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadLongRetryLbaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.TocData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.TocData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.FullTocData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.FullTocData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AtipData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AtipData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PmaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PmaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdMsfData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdMsfData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdFullData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdFullData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ReadCdMsfFullData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ReadCdMsfFullData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Track1PregapData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Track1PregapData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LeadInData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LeadInData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.LeadOutData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.LeadOutData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.C2PointersData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.C2PointersData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PQSubchannelData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PQSubchannelData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RWSubchannelData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RWSubchannelData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CorrectedSubchannelData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CorrectedSubchannelData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PQSubchannelWithC2Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PQSubchannelWithC2Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RWSubchannelWithC2Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RWSubchannelWithC2Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CorrectedSubchannelWithC2Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CorrectedSubchannelWithC2Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PfiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PfiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DmiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DmiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CmiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CmiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdBcaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdBcaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdAacsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdAacsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdDdsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdDdsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdSaiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdSaiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PriData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PriData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.EmbossedPfiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.EmbossedPfiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.AdipData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.AdipData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DcbData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DcbData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.HdCmiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.HdCmiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.DvdLayerData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.DvdLayerData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluBcaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluBcaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluDdsData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluDdsData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluSaiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluSaiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluDiData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluDiData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.BluPacData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.BluPacData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PlextorReadCddaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PlextorReadCddaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PioneerReadCddaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PioneerReadCddaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PioneerReadCddaMsfData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PioneerReadCddaMsfData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.NecReadCddaData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.NecReadCddaData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.PlextorReadRawDVDData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.PlextorReadRawDVDData)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.HLDTSTReadRawDVDData)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.HLDTSTReadRawDVDData)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
785
DiscImageChef.Server/Areas/Admin/Views/TestedMedias/Edit.cshtml
Normal file
785
DiscImageChef.Server/Areas/Admin/Views/TestedMedias/Edit.cshtml
Normal file
@@ -0,0 +1,785 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>TestedMedia</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="IdentifyData" class="control-label"></label>
|
||||
<input asp-for="IdentifyData" class="form-control" />
|
||||
<span asp-validation-for="IdentifyData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Blocks" class="control-label"></label>
|
||||
<input asp-for="Blocks" class="form-control" />
|
||||
<span asp-validation-for="Blocks" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BlockSize" class="control-label"></label>
|
||||
<input asp-for="BlockSize" class="form-control" />
|
||||
<span asp-validation-for="BlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadAACS" class="control-label"></label>
|
||||
<input asp-for="CanReadAACS" class="form-control" />
|
||||
<span asp-validation-for="CanReadAACS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadADIP" class="control-label"></label>
|
||||
<input asp-for="CanReadADIP" class="form-control" />
|
||||
<span asp-validation-for="CanReadADIP" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadATIP" class="control-label"></label>
|
||||
<input asp-for="CanReadATIP" class="form-control" />
|
||||
<span asp-validation-for="CanReadATIP" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadBCA" class="control-label"></label>
|
||||
<input asp-for="CanReadBCA" class="form-control" />
|
||||
<span asp-validation-for="CanReadBCA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadC2Pointers" class="control-label"></label>
|
||||
<input asp-for="CanReadC2Pointers" class="form-control" />
|
||||
<span asp-validation-for="CanReadC2Pointers" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadCMI" class="control-label"></label>
|
||||
<input asp-for="CanReadCMI" class="form-control" />
|
||||
<span asp-validation-for="CanReadCMI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadCorrectedSubchannel" class="control-label"></label>
|
||||
<input asp-for="CanReadCorrectedSubchannel" class="form-control" />
|
||||
<span asp-validation-for="CanReadCorrectedSubchannel" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadCorrectedSubchannelWithC2" class="control-label"></label>
|
||||
<input asp-for="CanReadCorrectedSubchannelWithC2" class="form-control" />
|
||||
<span asp-validation-for="CanReadCorrectedSubchannelWithC2" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDCB" class="control-label"></label>
|
||||
<input asp-for="CanReadDCB" class="form-control" />
|
||||
<span asp-validation-for="CanReadDCB" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDDS" class="control-label"></label>
|
||||
<input asp-for="CanReadDDS" class="form-control" />
|
||||
<span asp-validation-for="CanReadDDS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDMI" class="control-label"></label>
|
||||
<input asp-for="CanReadDMI" class="form-control" />
|
||||
<span asp-validation-for="CanReadDMI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadDiscInformation" class="control-label"></label>
|
||||
<input asp-for="CanReadDiscInformation" class="form-control" />
|
||||
<span asp-validation-for="CanReadDiscInformation" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadFullTOC" class="control-label"></label>
|
||||
<input asp-for="CanReadFullTOC" class="form-control" />
|
||||
<span asp-validation-for="CanReadFullTOC" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadHDCMI" class="control-label"></label>
|
||||
<input asp-for="CanReadHDCMI" class="form-control" />
|
||||
<span asp-validation-for="CanReadHDCMI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadLayerCapacity" class="control-label"></label>
|
||||
<input asp-for="CanReadLayerCapacity" class="form-control" />
|
||||
<span asp-validation-for="CanReadLayerCapacity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadFirstTrackPreGap" class="control-label"></label>
|
||||
<input asp-for="CanReadFirstTrackPreGap" class="form-control" />
|
||||
<span asp-validation-for="CanReadFirstTrackPreGap" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadLeadIn" class="control-label"></label>
|
||||
<input asp-for="CanReadLeadIn" class="form-control" />
|
||||
<span asp-validation-for="CanReadLeadIn" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadLeadOut" class="control-label"></label>
|
||||
<input asp-for="CanReadLeadOut" class="form-control" />
|
||||
<span asp-validation-for="CanReadLeadOut" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadMediaID" class="control-label"></label>
|
||||
<input asp-for="CanReadMediaID" class="form-control" />
|
||||
<span asp-validation-for="CanReadMediaID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadMediaSerial" class="control-label"></label>
|
||||
<input asp-for="CanReadMediaSerial" class="form-control" />
|
||||
<span asp-validation-for="CanReadMediaSerial" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPAC" class="control-label"></label>
|
||||
<input asp-for="CanReadPAC" class="form-control" />
|
||||
<span asp-validation-for="CanReadPAC" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPFI" class="control-label"></label>
|
||||
<input asp-for="CanReadPFI" class="form-control" />
|
||||
<span asp-validation-for="CanReadPFI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPMA" class="control-label"></label>
|
||||
<input asp-for="CanReadPMA" class="form-control" />
|
||||
<span asp-validation-for="CanReadPMA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPQSubchannel" class="control-label"></label>
|
||||
<input asp-for="CanReadPQSubchannel" class="form-control" />
|
||||
<span asp-validation-for="CanReadPQSubchannel" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPQSubchannelWithC2" class="control-label"></label>
|
||||
<input asp-for="CanReadPQSubchannelWithC2" class="form-control" />
|
||||
<span asp-validation-for="CanReadPQSubchannelWithC2" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadPRI" class="control-label"></label>
|
||||
<input asp-for="CanReadPRI" class="form-control" />
|
||||
<span asp-validation-for="CanReadPRI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadRWSubchannel" class="control-label"></label>
|
||||
<input asp-for="CanReadRWSubchannel" class="form-control" />
|
||||
<span asp-validation-for="CanReadRWSubchannel" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadRWSubchannelWithC2" class="control-label"></label>
|
||||
<input asp-for="CanReadRWSubchannelWithC2" class="form-control" />
|
||||
<span asp-validation-for="CanReadRWSubchannelWithC2" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadRecordablePFI" class="control-label"></label>
|
||||
<input asp-for="CanReadRecordablePFI" class="form-control" />
|
||||
<span asp-validation-for="CanReadRecordablePFI" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadSpareAreaInformation" class="control-label"></label>
|
||||
<input asp-for="CanReadSpareAreaInformation" class="form-control" />
|
||||
<span asp-validation-for="CanReadSpareAreaInformation" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadTOC" class="control-label"></label>
|
||||
<input asp-for="CanReadTOC" class="form-control" />
|
||||
<span asp-validation-for="CanReadTOC" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Density" class="control-label"></label>
|
||||
<input asp-for="Density" class="form-control" />
|
||||
<span asp-validation-for="Density" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LongBlockSize" class="control-label"></label>
|
||||
<input asp-for="LongBlockSize" class="form-control" />
|
||||
<span asp-validation-for="LongBlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="MediaIsRecognized" /> @Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumType" class="control-label"></label>
|
||||
<input asp-for="MediumType" class="form-control" />
|
||||
<span asp-validation-for="MediumType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumTypeName" class="control-label"></label>
|
||||
<input asp-for="MediumTypeName" class="form-control" />
|
||||
<span asp-validation-for="MediumTypeName" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Model" class="control-label"></label>
|
||||
<input asp-for="Model" class="form-control" />
|
||||
<span asp-validation-for="Model" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsHLDTSTReadRawDVD" class="control-label"></label>
|
||||
<input asp-for="SupportsHLDTSTReadRawDVD" class="form-control" />
|
||||
<span asp-validation-for="SupportsHLDTSTReadRawDVD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsNECReadCDDA" class="control-label"></label>
|
||||
<input asp-for="SupportsNECReadCDDA" class="form-control" />
|
||||
<span asp-validation-for="SupportsNECReadCDDA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPioneerReadCDDA" class="control-label"></label>
|
||||
<input asp-for="SupportsPioneerReadCDDA" class="form-control" />
|
||||
<span asp-validation-for="SupportsPioneerReadCDDA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPioneerReadCDDAMSF" class="control-label"></label>
|
||||
<input asp-for="SupportsPioneerReadCDDAMSF" class="form-control" />
|
||||
<span asp-validation-for="SupportsPioneerReadCDDAMSF" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPlextorReadCDDA" class="control-label"></label>
|
||||
<input asp-for="SupportsPlextorReadCDDA" class="form-control" />
|
||||
<span asp-validation-for="SupportsPlextorReadCDDA" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsPlextorReadRawDVD" class="control-label"></label>
|
||||
<input asp-for="SupportsPlextorReadRawDVD" class="form-control" />
|
||||
<span asp-validation-for="SupportsPlextorReadRawDVD" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead10" class="control-label"></label>
|
||||
<input asp-for="SupportsRead10" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead10" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead12" class="control-label"></label>
|
||||
<input asp-for="SupportsRead12" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead12" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead16" class="control-label"></label>
|
||||
<input asp-for="SupportsRead16" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead16" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsRead6" class="control-label"></label>
|
||||
<input asp-for="SupportsRead6" class="form-control" />
|
||||
<span asp-validation-for="SupportsRead6" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCapacity16" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCapacity16" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCapacity16" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCapacity" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCapacity" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCapacity" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCd" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCd" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCd" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCdMsf" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCdMsf" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCdMsf" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCdRaw" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCdRaw" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCdRaw" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadCdMsfRaw" class="control-label"></label>
|
||||
<input asp-for="SupportsReadCdMsfRaw" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadCdMsfRaw" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLong16" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLong16" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLong16" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLong" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLong" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLong" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense6Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense10Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LBASectors" class="control-label"></label>
|
||||
<input asp-for="LBASectors" class="form-control" />
|
||||
<span asp-validation-for="LBASectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LBA48Sectors" class="control-label"></label>
|
||||
<input asp-for="LBA48Sectors" class="form-control" />
|
||||
<span asp-validation-for="LBA48Sectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LogicalAlignment" class="control-label"></label>
|
||||
<input asp-for="LogicalAlignment" class="form-control" />
|
||||
<span asp-validation-for="LogicalAlignment" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="NominalRotationRate" class="control-label"></label>
|
||||
<input asp-for="NominalRotationRate" class="form-control" />
|
||||
<span asp-validation-for="NominalRotationRate" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PhysicalBlockSize" class="control-label"></label>
|
||||
<input asp-for="PhysicalBlockSize" class="form-control" />
|
||||
<span asp-validation-for="PhysicalBlockSize" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SolidStateDevice" class="control-label"></label>
|
||||
<input asp-for="SolidStateDevice" class="form-control" />
|
||||
<span asp-validation-for="SolidStateDevice" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="UnformattedBPT" class="control-label"></label>
|
||||
<input asp-for="UnformattedBPT" class="form-control" />
|
||||
<span asp-validation-for="UnformattedBPT" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="UnformattedBPS" class="control-label"></label>
|
||||
<input asp-for="UnformattedBPS" class="form-control" />
|
||||
<span asp-validation-for="UnformattedBPS" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaRetryLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaRetryLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaRetryLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadRetryLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadRetryLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadRetryLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLongLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLongLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLongLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLongRetryLba" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLongRetryLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLongRetryLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsSeekLba" class="control-label"></label>
|
||||
<input asp-for="SupportsSeekLba" class="form-control" />
|
||||
<span asp-validation-for="SupportsSeekLba" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaLba48" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaLba48" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaLba48" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLba48" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLba48" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLba48" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDma" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDma" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDma" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadDmaRetry" class="control-label"></label>
|
||||
<input asp-for="SupportsReadDmaRetry" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadDmaRetry" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadRetry" class="control-label"></label>
|
||||
<input asp-for="SupportsReadRetry" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadRetry" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadSectors" class="control-label"></label>
|
||||
<input asp-for="SupportsReadSectors" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadSectors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsReadLongRetry" class="control-label"></label>
|
||||
<input asp-for="SupportsReadLongRetry" class="form-control" />
|
||||
<span asp-validation-for="SupportsReadLongRetry" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="SupportsSeek" class="control-label"></label>
|
||||
<input asp-for="SupportsSeek" class="form-control" />
|
||||
<span asp-validation-for="SupportsSeek" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadingIntersessionLeadIn" class="control-label"></label>
|
||||
<input asp-for="CanReadingIntersessionLeadIn" class="form-control" />
|
||||
<span asp-validation-for="CanReadingIntersessionLeadIn" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadingIntersessionLeadOut" class="control-label"></label>
|
||||
<input asp-for="CanReadingIntersessionLeadOut" class="form-control" />
|
||||
<span asp-validation-for="CanReadingIntersessionLeadOut" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="IntersessionLeadInData" class="control-label"></label>
|
||||
<input asp-for="IntersessionLeadInData" class="form-control" />
|
||||
<span asp-validation-for="IntersessionLeadInData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="IntersessionLeadOutData" class="control-label"></label>
|
||||
<input asp-for="IntersessionLeadOutData" class="form-control" />
|
||||
<span asp-validation-for="IntersessionLeadOutData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read6Data" class="control-label"></label>
|
||||
<input asp-for="Read6Data" class="form-control" />
|
||||
<span asp-validation-for="Read6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read10Data" class="control-label"></label>
|
||||
<input asp-for="Read10Data" class="form-control" />
|
||||
<span asp-validation-for="Read10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read12Data" class="control-label"></label>
|
||||
<input asp-for="Read12Data" class="form-control" />
|
||||
<span asp-validation-for="Read12Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Read16Data" class="control-label"></label>
|
||||
<input asp-for="Read16Data" class="form-control" />
|
||||
<span asp-validation-for="Read16Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLong10Data" class="control-label"></label>
|
||||
<input asp-for="ReadLong10Data" class="form-control" />
|
||||
<span asp-validation-for="ReadLong10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLong16Data" class="control-label"></label>
|
||||
<input asp-for="ReadLong16Data" class="form-control" />
|
||||
<span asp-validation-for="ReadLong16Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadSectorsData" class="control-label"></label>
|
||||
<input asp-for="ReadSectorsData" class="form-control" />
|
||||
<span asp-validation-for="ReadSectorsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadSectorsRetryData" class="control-label"></label>
|
||||
<input asp-for="ReadSectorsRetryData" class="form-control" />
|
||||
<span asp-validation-for="ReadSectorsRetryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaRetryData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaRetryData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaRetryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadRetryLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadRetryLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadRetryLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaRetryLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadDmaRetryLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaRetryLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLba48Data" class="control-label"></label>
|
||||
<input asp-for="ReadLba48Data" class="form-control" />
|
||||
<span asp-validation-for="ReadLba48Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadDmaLba48Data" class="control-label"></label>
|
||||
<input asp-for="ReadDmaLba48Data" class="form-control" />
|
||||
<span asp-validation-for="ReadDmaLba48Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongData" class="control-label"></label>
|
||||
<input asp-for="ReadLongData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongRetryData" class="control-label"></label>
|
||||
<input asp-for="ReadLongRetryData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongRetryData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadLongLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadLongRetryLbaData" class="control-label"></label>
|
||||
<input asp-for="ReadLongRetryLbaData" class="form-control" />
|
||||
<span asp-validation-for="ReadLongRetryLbaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="TocData" class="control-label"></label>
|
||||
<input asp-for="TocData" class="form-control" />
|
||||
<span asp-validation-for="TocData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="FullTocData" class="control-label"></label>
|
||||
<input asp-for="FullTocData" class="form-control" />
|
||||
<span asp-validation-for="FullTocData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AtipData" class="control-label"></label>
|
||||
<input asp-for="AtipData" class="form-control" />
|
||||
<span asp-validation-for="AtipData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PmaData" class="control-label"></label>
|
||||
<input asp-for="PmaData" class="form-control" />
|
||||
<span asp-validation-for="PmaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdData" class="control-label"></label>
|
||||
<input asp-for="ReadCdData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdMsfData" class="control-label"></label>
|
||||
<input asp-for="ReadCdMsfData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdMsfData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdFullData" class="control-label"></label>
|
||||
<input asp-for="ReadCdFullData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdFullData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReadCdMsfFullData" class="control-label"></label>
|
||||
<input asp-for="ReadCdMsfFullData" class="form-control" />
|
||||
<span asp-validation-for="ReadCdMsfFullData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Track1PregapData" class="control-label"></label>
|
||||
<input asp-for="Track1PregapData" class="form-control" />
|
||||
<span asp-validation-for="Track1PregapData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LeadInData" class="control-label"></label>
|
||||
<input asp-for="LeadInData" class="form-control" />
|
||||
<span asp-validation-for="LeadInData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="LeadOutData" class="control-label"></label>
|
||||
<input asp-for="LeadOutData" class="form-control" />
|
||||
<span asp-validation-for="LeadOutData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="C2PointersData" class="control-label"></label>
|
||||
<input asp-for="C2PointersData" class="form-control" />
|
||||
<span asp-validation-for="C2PointersData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PQSubchannelData" class="control-label"></label>
|
||||
<input asp-for="PQSubchannelData" class="form-control" />
|
||||
<span asp-validation-for="PQSubchannelData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="RWSubchannelData" class="control-label"></label>
|
||||
<input asp-for="RWSubchannelData" class="form-control" />
|
||||
<span asp-validation-for="RWSubchannelData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CorrectedSubchannelData" class="control-label"></label>
|
||||
<input asp-for="CorrectedSubchannelData" class="form-control" />
|
||||
<span asp-validation-for="CorrectedSubchannelData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PQSubchannelWithC2Data" class="control-label"></label>
|
||||
<input asp-for="PQSubchannelWithC2Data" class="form-control" />
|
||||
<span asp-validation-for="PQSubchannelWithC2Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="RWSubchannelWithC2Data" class="control-label"></label>
|
||||
<input asp-for="RWSubchannelWithC2Data" class="form-control" />
|
||||
<span asp-validation-for="RWSubchannelWithC2Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CorrectedSubchannelWithC2Data" class="control-label"></label>
|
||||
<input asp-for="CorrectedSubchannelWithC2Data" class="form-control" />
|
||||
<span asp-validation-for="CorrectedSubchannelWithC2Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PfiData" class="control-label"></label>
|
||||
<input asp-for="PfiData" class="form-control" />
|
||||
<span asp-validation-for="PfiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DmiData" class="control-label"></label>
|
||||
<input asp-for="DmiData" class="form-control" />
|
||||
<span asp-validation-for="DmiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CmiData" class="control-label"></label>
|
||||
<input asp-for="CmiData" class="form-control" />
|
||||
<span asp-validation-for="CmiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdBcaData" class="control-label"></label>
|
||||
<input asp-for="DvdBcaData" class="form-control" />
|
||||
<span asp-validation-for="DvdBcaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdAacsData" class="control-label"></label>
|
||||
<input asp-for="DvdAacsData" class="form-control" />
|
||||
<span asp-validation-for="DvdAacsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdDdsData" class="control-label"></label>
|
||||
<input asp-for="DvdDdsData" class="form-control" />
|
||||
<span asp-validation-for="DvdDdsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdSaiData" class="control-label"></label>
|
||||
<input asp-for="DvdSaiData" class="form-control" />
|
||||
<span asp-validation-for="DvdSaiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PriData" class="control-label"></label>
|
||||
<input asp-for="PriData" class="form-control" />
|
||||
<span asp-validation-for="PriData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="EmbossedPfiData" class="control-label"></label>
|
||||
<input asp-for="EmbossedPfiData" class="form-control" />
|
||||
<span asp-validation-for="EmbossedPfiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="AdipData" class="control-label"></label>
|
||||
<input asp-for="AdipData" class="form-control" />
|
||||
<span asp-validation-for="AdipData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DcbData" class="control-label"></label>
|
||||
<input asp-for="DcbData" class="form-control" />
|
||||
<span asp-validation-for="DcbData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="HdCmiData" class="control-label"></label>
|
||||
<input asp-for="HdCmiData" class="form-control" />
|
||||
<span asp-validation-for="HdCmiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="DvdLayerData" class="control-label"></label>
|
||||
<input asp-for="DvdLayerData" class="form-control" />
|
||||
<span asp-validation-for="DvdLayerData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluBcaData" class="control-label"></label>
|
||||
<input asp-for="BluBcaData" class="form-control" />
|
||||
<span asp-validation-for="BluBcaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluDdsData" class="control-label"></label>
|
||||
<input asp-for="BluDdsData" class="form-control" />
|
||||
<span asp-validation-for="BluDdsData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluSaiData" class="control-label"></label>
|
||||
<input asp-for="BluSaiData" class="form-control" />
|
||||
<span asp-validation-for="BluSaiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluDiData" class="control-label"></label>
|
||||
<input asp-for="BluDiData" class="form-control" />
|
||||
<span asp-validation-for="BluDiData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="BluPacData" class="control-label"></label>
|
||||
<input asp-for="BluPacData" class="form-control" />
|
||||
<span asp-validation-for="BluPacData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PlextorReadCddaData" class="control-label"></label>
|
||||
<input asp-for="PlextorReadCddaData" class="form-control" />
|
||||
<span asp-validation-for="PlextorReadCddaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PioneerReadCddaData" class="control-label"></label>
|
||||
<input asp-for="PioneerReadCddaData" class="form-control" />
|
||||
<span asp-validation-for="PioneerReadCddaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PioneerReadCddaMsfData" class="control-label"></label>
|
||||
<input asp-for="PioneerReadCddaMsfData" class="form-control" />
|
||||
<span asp-validation-for="PioneerReadCddaMsfData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="NecReadCddaData" class="control-label"></label>
|
||||
<input asp-for="NecReadCddaData" class="form-control" />
|
||||
<span asp-validation-for="NecReadCddaData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="PlextorReadRawDVDData" class="control-label"></label>
|
||||
<input asp-for="PlextorReadRawDVDData" class="form-control" />
|
||||
<span asp-validation-for="PlextorReadRawDVDData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="HLDTSTReadRawDVDData" class="control-label"></label>
|
||||
<input asp-for="HLDTSTReadRawDVDData" class="form-control" />
|
||||
<span asp-validation-for="HLDTSTReadRawDVDData" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
937
DiscImageChef.Server/Areas/Admin/Views/TestedMedias/Index.cshtml
Normal file
937
DiscImageChef.Server/Areas/Admin/Views/TestedMedias/Index.cshtml
Normal file
@@ -0,0 +1,937 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.TestedMedia>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.IdentifyData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Blocks)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BlockSize)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadAACS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadADIP)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadATIP)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadBCA)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadC2Pointers)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadCMI)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadCorrectedSubchannel)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadCorrectedSubchannelWithC2)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDCB)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDDS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDMI)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadDiscInformation)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadFullTOC)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadHDCMI)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadLayerCapacity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadFirstTrackPreGap)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadIn)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadLeadOut)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaID)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaSerial)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadPAC)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadPFI)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadPMA)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadPQSubchannel)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadPQSubchannelWithC2)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadPRI)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadRWSubchannel)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadRWSubchannelWithC2)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadRecordablePFI)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadSpareAreaInformation)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadTOC)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LongBlockSize)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediumTypeName)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Model)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsHLDTSTReadRawDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsNECReadCDDA)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsPioneerReadCDDA)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsPioneerReadCDDAMSF)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsPlextorReadCDDA)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsPlextorReadRawDVD)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsRead10)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsRead12)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsRead16)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsRead6)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCapacity16)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCapacity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCd)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdMsf)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdRaw)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadCdMsfRaw)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLong16)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLong)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LBASectors)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LBA48Sectors)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LogicalAlignment)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.NominalRotationRate)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PhysicalBlockSize)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SolidStateDevice)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.UnformattedBPT)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.UnformattedBPS)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaRetryLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadRetryLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongRetryLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsSeekLba)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaLba48)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLba48)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDma)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadDmaRetry)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadRetry)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadSectors)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsReadLongRetry)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsSeek)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadingIntersessionLeadIn)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadingIntersessionLeadOut)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.IntersessionLeadInData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.IntersessionLeadOutData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Read6Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Read10Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Read12Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Read16Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLong10Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLong16Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadSectorsData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadSectorsRetryData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadDmaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadDmaRetryData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLbaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadRetryLbaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadDmaLbaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadDmaRetryLbaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLba48Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadDmaLba48Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLongData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLongRetryData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLongLbaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadLongRetryLbaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.TocData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.FullTocData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.AtipData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PmaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadCdData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadCdMsfData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadCdFullData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ReadCdMsfFullData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Track1PregapData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LeadInData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LeadOutData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.C2PointersData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PQSubchannelData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.RWSubchannelData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CorrectedSubchannelData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PQSubchannelWithC2Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.RWSubchannelWithC2Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CorrectedSubchannelWithC2Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PfiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DmiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CmiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DvdBcaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DvdAacsData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DvdDdsData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DvdSaiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PriData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.EmbossedPfiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.AdipData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DcbData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.HdCmiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DvdLayerData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BluBcaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BluDdsData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BluSaiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BluDiData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BluPacData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PlextorReadCddaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PioneerReadCddaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PioneerReadCddaMsfData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.NecReadCddaData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PlextorReadRawDVDData)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.HLDTSTReadRawDVDData)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.IdentifyData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Blocks)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BlockSize)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadAACS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadADIP)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadATIP)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadBCA)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadC2Pointers)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadCMI)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadCorrectedSubchannel)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadCorrectedSubchannelWithC2)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDCB)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDDS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDMI)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadDiscInformation)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadFullTOC)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadHDCMI)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadLayerCapacity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadFirstTrackPreGap)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadLeadIn)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadLeadOut)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadMediaID)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadMediaSerial)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadPAC)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadPFI)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadPMA)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadPQSubchannel)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadPQSubchannelWithC2)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadPRI)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadRWSubchannel)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadRWSubchannelWithC2)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadRecordablePFI)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadSpareAreaInformation)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadTOC)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Density)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LongBlockSize)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Manufacturer)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediaIsRecognized)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediumType)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediumTypeName)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Model)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsHLDTSTReadRawDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsNECReadCDDA)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsPioneerReadCDDA)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsPioneerReadCDDAMSF)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsPlextorReadCDDA)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsPlextorReadRawDVD)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsRead10)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsRead12)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsRead16)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsRead6)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadCapacity16)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadCapacity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadCd)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadCdMsf)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadCdRaw)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadCdMsfRaw)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLong16)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLong)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense6Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense10Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LBASectors)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LBA48Sectors)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LogicalAlignment)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.NominalRotationRate)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PhysicalBlockSize)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SolidStateDevice)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.UnformattedBPT)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.UnformattedBPS)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadDmaLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadDmaRetryLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadRetryLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLongLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLongRetryLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsSeekLba)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadDmaLba48)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLba48)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadDma)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadDmaRetry)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadRetry)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadSectors)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsReadLongRetry)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SupportsSeek)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadingIntersessionLeadIn)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadingIntersessionLeadOut)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.IntersessionLeadInData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.IntersessionLeadOutData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Read6Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Read10Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Read12Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Read16Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLong10Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLong16Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadSectorsData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadSectorsRetryData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadDmaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadDmaRetryData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLbaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadRetryLbaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadDmaLbaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadDmaRetryLbaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLba48Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadDmaLba48Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLongData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLongRetryData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLongLbaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadLongRetryLbaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.TocData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.FullTocData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.AtipData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PmaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadCdData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadCdMsfData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadCdFullData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ReadCdMsfFullData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Track1PregapData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LeadInData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LeadOutData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.C2PointersData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PQSubchannelData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.RWSubchannelData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CorrectedSubchannelData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PQSubchannelWithC2Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.RWSubchannelWithC2Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CorrectedSubchannelWithC2Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PfiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DmiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CmiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DvdBcaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DvdAacsData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DvdDdsData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DvdSaiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PriData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.EmbossedPfiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.AdipData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DcbData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.HdCmiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DvdLayerData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BluBcaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BluDdsData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BluSaiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BluDiData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BluPacData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PlextorReadCddaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PioneerReadCddaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PioneerReadCddaMsfData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.NecReadCddaData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PlextorReadRawDVDData)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.HLDTSTReadRawDVDData)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,79 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedSequentialMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>TestedSequentialMedia</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadMediaSerial" class="control-label"></label>
|
||||
<input asp-for="CanReadMediaSerial" class="form-control" />
|
||||
<span asp-validation-for="CanReadMediaSerial" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Density" class="control-label"></label>
|
||||
<input asp-for="Density" class="form-control" />
|
||||
<span asp-validation-for="Density" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="MediaIsRecognized" /> @Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumType" class="control-label"></label>
|
||||
<input asp-for="MediumType" class="form-control" />
|
||||
<span asp-validation-for="MediumType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumTypeName" class="control-label"></label>
|
||||
<input asp-for="MediumTypeName" class="form-control" />
|
||||
<span asp-validation-for="MediumTypeName" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Model" class="control-label"></label>
|
||||
<input asp-for="Model" class="form-control" />
|
||||
<span asp-validation-for="Model" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense6Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense10Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,84 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedSequentialMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>TestedSequentialMedia</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadMediaSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Density)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediaIsRecognized)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumTypeName)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumTypeName)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Model)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Model)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10Data)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,81 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedSequentialMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>TestedSequentialMedia</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaSerial)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.CanReadMediaSerial)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Density)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediaIsRecognized)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumType)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.MediumTypeName)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.MediumTypeName)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Model)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Model)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense6Data)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ModeSense10Data)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,80 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.TestedSequentialMedia
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Edit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>TestedSequentialMedia</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Edit">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<div class="form-group">
|
||||
<label asp-for="CanReadMediaSerial" class="control-label"></label>
|
||||
<input asp-for="CanReadMediaSerial" class="form-control" />
|
||||
<span asp-validation-for="CanReadMediaSerial" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Density" class="control-label"></label>
|
||||
<input asp-for="Density" class="form-control" />
|
||||
<span asp-validation-for="Density" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="MediaIsRecognized" /> @Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumType" class="control-label"></label>
|
||||
<input asp-for="MediumType" class="form-control" />
|
||||
<span asp-validation-for="MediumType" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="MediumTypeName" class="control-label"></label>
|
||||
<input asp-for="MediumTypeName" class="form-control" />
|
||||
<span asp-validation-for="MediumTypeName" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Model" class="control-label"></label>
|
||||
<input asp-for="Model" class="form-control" />
|
||||
<span asp-validation-for="Model" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense6Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense6Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense6Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ModeSense10Data" class="control-label"></label>
|
||||
<input asp-for="ModeSense10Data" class="form-control" />
|
||||
<span asp-validation-for="ModeSense10Data" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,91 @@
|
||||
@model IEnumerable<DiscImageChef.CommonTypes.Metadata.TestedSequentialMedia>
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.CanReadMediaSerial)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Density)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediaIsRecognized)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediumType)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.MediumTypeName)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Model)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense6Data)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.ModeSense10Data)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.CanReadMediaSerial)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Density)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Manufacturer)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediaIsRecognized)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediumType)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.MediumTypeName)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Model)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense6Data)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.ModeSense10Data)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
64
DiscImageChef.Server/Areas/Admin/Views/Usbs/Create.cshtml
Normal file
64
DiscImageChef.Server/Areas/Admin/Views/Usbs/Create.cshtml
Normal file
@@ -0,0 +1,64 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Usb
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Create</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4>Usb</h4>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<form asp-action="Create">
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<div class="form-group">
|
||||
<label asp-for="VendorID" class="control-label"></label>
|
||||
<input asp-for="VendorID" class="form-control" />
|
||||
<span asp-validation-for="VendorID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ProductID" class="control-label"></label>
|
||||
<input asp-for="ProductID" class="form-control" />
|
||||
<span asp-validation-for="ProductID" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Manufacturer" class="control-label"></label>
|
||||
<input asp-for="Manufacturer" class="form-control" />
|
||||
<span asp-validation-for="Manufacturer" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Product" class="control-label"></label>
|
||||
<input asp-for="Product" class="form-control" />
|
||||
<span asp-validation-for="Product" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" asp-for="RemovableMedia" /> @Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Descriptors" class="control-label"></label>
|
||||
<input asp-for="Descriptors" class="form-control" />
|
||||
<span asp-validation-for="Descriptors" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Create" class="btn btn-primary" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
66
DiscImageChef.Server/Areas/Admin/Views/Usbs/Delete.cshtml
Normal file
66
DiscImageChef.Server/Areas/Admin/Views/Usbs/Delete.cshtml
Normal file
@@ -0,0 +1,66 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Usb
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Delete</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Usb</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.VendorID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.VendorID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ProductID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ProductID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Product)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Product)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RemovableMedia)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Descriptors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Descriptors)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
63
DiscImageChef.Server/Areas/Admin/Views/Usbs/Details.cshtml
Normal file
63
DiscImageChef.Server/Areas/Admin/Views/Usbs/Details.cshtml
Normal file
@@ -0,0 +1,63 @@
|
||||
@model DiscImageChef.CommonTypes.Metadata.Usb
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Details</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h4>Usb</h4>
|
||||
<hr />
|
||||
<dl class="row">
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.VendorID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.VendorID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.ProductID)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.ProductID)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Manufacturer)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Manufacturer)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Product)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Product)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.RemovableMedia)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.RemovableMedia)
|
||||
</dd>
|
||||
<dt class = "col-sm-2">
|
||||
@Html.DisplayNameFor(model => model.Descriptors)
|
||||
</dt>
|
||||
<dd class = "col-sm-10">
|
||||
@Html.DisplayFor(model => model.Descriptors)
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user