mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Fix display names for ASP.NET views.
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
@using DiscImageChef.Decoders.SCSI
|
||||
@using DiscImageChef.Server.Core
|
||||
@model DiscImageChef.CommonTypes.Metadata.Scsi
|
||||
|
||||
@{
|
||||
@@ -35,70 +37,9 @@
|
||||
}
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<div>
|
||||
<h4>Scsi</h4>
|
||||
<h4>SCSI INQUIRY - ID = @Model.Id</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>
|
||||
@Html.Raw(Html.EncodedMultiLineText(Inquiry.Prettify(Model.InquiryData)))
|
||||
<form asp-action="Delete">
|
||||
<input type="hidden" asp-for="Id" />
|
||||
<a asp-action="Index" class="btn btn-primary">Back to List</a>
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
// Copyright © 2011-2019 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
}
|
||||
SCSI INQUIRY responses
|
||||
<h4>SCSI INQUIRY responses</h4>
|
||||
<div>
|
||||
<a asp-action="Consolidate" class="btn btn-danger">Consolidate duplicates</a>
|
||||
</div>
|
||||
@@ -45,13 +45,13 @@ SCSI INQUIRY responses
|
||||
@Html.DisplayNameFor(model => model.Id)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Inquiry.Value.VendorIdentification)
|
||||
Vendor identification
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Inquiry.Value.ProductIdentification)
|
||||
Product identification
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Inquiry.Value.ProductRevisionLevel)
|
||||
Product revision level
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SupportsModeSense6)
|
||||
|
||||
Reference in New Issue
Block a user