diff --git a/cicm_web/Areas/Admin/Views/BrowserTests/Index.cshtml b/cicm_web/Areas/Admin/Views/BrowserTests/Index.cshtml index 274e1ffe..cf968450 100644 --- a/cicm_web/Areas/Admin/Views/BrowserTests/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/BrowserTests/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,64 +39,68 @@

Index

- Create New + + Create New +

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + -@foreach (var item in Model) { + @foreach(BrowserTest item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.UserAgent) - - @Html.DisplayNameFor(model => model.Browser) - - @Html.DisplayNameFor(model => model.Version) - - @Html.DisplayNameFor(model => model.Os) - - @Html.DisplayNameFor(model => model.Platform) - - @Html.DisplayNameFor(model => model.Gif87) - - @Html.DisplayNameFor(model => model.Gif89) - - @Html.DisplayNameFor(model => model.Jpeg) - - @Html.DisplayNameFor(model => model.Png) - - @Html.DisplayNameFor(model => model.Pngt) - - @Html.DisplayNameFor(model => model.Agif) - - @Html.DisplayNameFor(model => model.Table) - - @Html.DisplayNameFor(model => model.Colors) - - @Html.DisplayNameFor(model => model.Js) - - @Html.DisplayNameFor(model => model.Frames) - - @Html.DisplayNameFor(model => model.Flash) -
+ @Html.DisplayNameFor(model => model.UserAgent) + + @Html.DisplayNameFor(model => model.Browser) + + @Html.DisplayNameFor(model => model.Version) + + @Html.DisplayNameFor(model => model.Os) + + @Html.DisplayNameFor(model => model.Platform) + + @Html.DisplayNameFor(model => model.Gif87) + + @Html.DisplayNameFor(model => model.Gif89) + + @Html.DisplayNameFor(model => model.Jpeg) + + @Html.DisplayNameFor(model => model.Png) + + @Html.DisplayNameFor(model => model.Pngt) + + @Html.DisplayNameFor(model => model.Agif) + + @Html.DisplayNameFor(model => model.Table) + + @Html.DisplayNameFor(model => model.Colors) + + @Html.DisplayNameFor(model => model.Js) + + @Html.DisplayNameFor(model => model.Frames) + + @Html.DisplayNameFor(model => model.Flash) +
@Html.DisplayFor(modelItem => item.UserAgent) @@ -146,11 +151,23 @@ @Html.DisplayFor(modelItem => item.Flash) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/Companies/Index.cshtml b/cicm_web/Areas/Admin/Views/Companies/Index.cshtml index 0d07e373..7ac79c1e 100644 --- a/cicm_web/Areas/Admin/Views/Companies/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/Companies/Index.cshtml @@ -91,16 +91,16 @@ @Html.DisplayFor(modelItem => item.SoldTo.Name) - - Edit - Details + + Edit + diff --git a/cicm_web/Areas/Admin/Views/CompanyDescriptions/Index.cshtml b/cicm_web/Areas/Admin/Views/CompanyDescriptions/Index.cshtml index 676949ff..ef9a12ce 100644 --- a/cicm_web/Areas/Admin/Views/CompanyDescriptions/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/CompanyDescriptions/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,25 +39,29 @@

Index

- Create New + + Create New +

- - - - - - + + + + + + -@foreach (var item in Model) { + @foreach(CompanyDescription item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.CompanyId) - - @Html.DisplayNameFor(model => model.Text) - - @Html.DisplayNameFor(model => model.Company) -
+ @Html.DisplayNameFor(model => model.CompanyId) + + @Html.DisplayNameFor(model => model.Text) + + @Html.DisplayNameFor(model => model.Company) +
@Html.DisplayFor(modelItem => item.CompanyId) @@ -68,11 +73,23 @@ @Html.DisplayFor(modelItem => item.Company.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/Gpus/Index.cshtml b/cicm_web/Areas/Admin/Views/Gpus/Index.cshtml index 891cec44..04ada3ef 100644 --- a/cicm_web/Areas/Admin/Views/Gpus/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/Gpus/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,43 +39,47 @@

Index

- Create New + + Create New +

- - - - - - - - - - - - + + + + + + + + + + + + -@foreach (var item in Model) { + @foreach(Gpu item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Name) - - @Html.DisplayNameFor(model => model.ModelCode) - - @Html.DisplayNameFor(model => model.Introduced) - - @Html.DisplayNameFor(model => model.Package) - - @Html.DisplayNameFor(model => model.Process) - - @Html.DisplayNameFor(model => model.ProcessNm) - - @Html.DisplayNameFor(model => model.DieSize) - - @Html.DisplayNameFor(model => model.Transistors) - - @Html.DisplayNameFor(model => model.Company) -
+ @Html.DisplayNameFor(model => model.Name) + + @Html.DisplayNameFor(model => model.ModelCode) + + @Html.DisplayNameFor(model => model.Introduced) + + @Html.DisplayNameFor(model => model.Package) + + @Html.DisplayNameFor(model => model.Process) + + @Html.DisplayNameFor(model => model.ProcessNm) + + @Html.DisplayNameFor(model => model.DieSize) + + @Html.DisplayNameFor(model => model.Transistors) + + @Html.DisplayNameFor(model => model.Company) +
@Html.DisplayFor(modelItem => item.Name) @@ -104,11 +109,23 @@ @Html.DisplayFor(modelItem => item.Company.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/InstructionSetExtensions/Index.cshtml b/cicm_web/Areas/Admin/Views/InstructionSetExtensions/Index.cshtml index 90ab8ea8..ec8a4d10 100644 --- a/cicm_web/Areas/Admin/Views/InstructionSetExtensions/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/InstructionSetExtensions/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,29 +39,45 @@

Index

- Create New + + Create New +

- - - - + + + + -@foreach (var item in Model) { + @foreach(InstructionSetExtension item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Extension) -
+ @Html.DisplayNameFor(model => model.Extension) +
@Html.DisplayFor(modelItem => item.Extension) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/InstructionSets/Index.cshtml b/cicm_web/Areas/Admin/Views/InstructionSets/Index.cshtml index 646edeb8..94b9ec95 100644 --- a/cicm_web/Areas/Admin/Views/InstructionSets/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/InstructionSets/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,29 +39,45 @@

Index

- Create New + + Create New +

- - - - + + + + -@foreach (var item in Model) { + @foreach(InstructionSet item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Name) -
+ @Html.DisplayNameFor(model => model.Name) +
@Html.DisplayFor(modelItem => item.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/MachineFamilies/Index.cshtml b/cicm_web/Areas/Admin/Views/MachineFamilies/Index.cshtml index 9169a0ea..9e299a42 100644 --- a/cicm_web/Areas/Admin/Views/MachineFamilies/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/MachineFamilies/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,22 +39,26 @@

Index

- Create New + + Create New +

- - - - - + + + + + -@foreach (var item in Model) { + @foreach(MachineFamily item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Name) - - @Html.DisplayNameFor(model => model.Company) -
+ @Html.DisplayNameFor(model => model.Name) + + @Html.DisplayNameFor(model => model.Company) +
@Html.DisplayFor(modelItem => item.Name) @@ -62,11 +67,23 @@ @Html.DisplayFor(modelItem => item.Company.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/Machines/Index.cshtml b/cicm_web/Areas/Admin/Views/Machines/Index.cshtml index 222b3a40..82a6abc7 100644 --- a/cicm_web/Areas/Admin/Views/Machines/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/Machines/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,34 +39,38 @@

Index

- Create New + + Create New +

- - - - - - - - - + + + + + + + + + -@foreach (var item in Model) { + @foreach(Machine item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Name) - - @Html.DisplayNameFor(model => model.Type) - - @Html.DisplayNameFor(model => model.Introduced) - - @Html.DisplayNameFor(model => model.Model) - - @Html.DisplayNameFor(model => model.Company) - - @Html.DisplayNameFor(model => model.Family) -
+ @Html.DisplayNameFor(model => model.Name) + + @Html.DisplayNameFor(model => model.Type) + + @Html.DisplayNameFor(model => model.Introduced) + + @Html.DisplayNameFor(model => model.Model) + + @Html.DisplayNameFor(model => model.Company) + + @Html.DisplayNameFor(model => model.Family) +
@Html.DisplayFor(modelItem => item.Name) @@ -86,11 +91,23 @@ @Html.DisplayFor(modelItem => item.Family.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/MemoryByMachines/Index.cshtml b/cicm_web/Areas/Admin/Views/MemoryByMachines/Index.cshtml index 2b7b38f3..e2612135 100644 --- a/cicm_web/Areas/Admin/Views/MemoryByMachines/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/MemoryByMachines/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,31 +39,35 @@

Index

- Create New + + Create New +

- - - - - - - - + + + + + + + + -@foreach (var item in Model) { + @foreach(MemoryByMachine item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Type) - - @Html.DisplayNameFor(model => model.Usage) - - @Html.DisplayNameFor(model => model.Size) - - @Html.DisplayNameFor(model => model.Speed) - - @Html.DisplayNameFor(model => model.Machine) -
+ @Html.DisplayNameFor(model => model.Type) + + @Html.DisplayNameFor(model => model.Usage) + + @Html.DisplayNameFor(model => model.Size) + + @Html.DisplayNameFor(model => model.Speed) + + @Html.DisplayNameFor(model => model.Machine) +
@Html.DisplayFor(modelItem => item.Type) @@ -80,11 +85,23 @@ @Html.DisplayFor(modelItem => item.Machine.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/News/Index.cshtml b/cicm_web/Areas/Admin/Views/News/Index.cshtml index c7e34851..8f004b8b 100644 --- a/cicm_web/Areas/Admin/Views/News/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/News/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,25 +39,29 @@

Index

- Create New + + Create New +

- - - - - - + + + + + + -@foreach (var item in Model) { + @foreach(News item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Date) - - @Html.DisplayNameFor(model => model.Type) - - @Html.DisplayNameFor(model => model.AddedId) -
+ @Html.DisplayNameFor(model => model.Date) + + @Html.DisplayNameFor(model => model.Type) + + @Html.DisplayNameFor(model => model.AddedId) +
@Html.DisplayFor(modelItem => item.Date) @@ -68,11 +73,23 @@ @Html.DisplayFor(modelItem => item.AddedId) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/Processors/Index.cshtml b/cicm_web/Areas/Admin/Views/Processors/Index.cshtml index 58cd9e50..40ffb1b6 100644 --- a/cicm_web/Areas/Admin/Views/Processors/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/Processors/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,91 +39,95 @@

Index

- Create New + + Create New +

- - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + -@foreach (var item in Model) { + @foreach(Processor item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Name) - - @Html.DisplayNameFor(model => model.ModelCode) - - @Html.DisplayNameFor(model => model.Introduced) - - @Html.DisplayNameFor(model => model.Speed) - - @Html.DisplayNameFor(model => model.Package) - - @Html.DisplayNameFor(model => model.Gprs) - - @Html.DisplayNameFor(model => model.GprSize) - - @Html.DisplayNameFor(model => model.Fprs) - - @Html.DisplayNameFor(model => model.FprSize) - - @Html.DisplayNameFor(model => model.Cores) - - @Html.DisplayNameFor(model => model.ThreadsPerCore) - - @Html.DisplayNameFor(model => model.Process) - - @Html.DisplayNameFor(model => model.ProcessNm) - - @Html.DisplayNameFor(model => model.DieSize) - - @Html.DisplayNameFor(model => model.Transistors) - - @Html.DisplayNameFor(model => model.DataBus) - - @Html.DisplayNameFor(model => model.AddrBus) - - @Html.DisplayNameFor(model => model.SimdRegisters) - - @Html.DisplayNameFor(model => model.SimdSize) - - @Html.DisplayNameFor(model => model.L1Instruction) - - @Html.DisplayNameFor(model => model.L1Data) - - @Html.DisplayNameFor(model => model.L2) - - @Html.DisplayNameFor(model => model.L3) - - @Html.DisplayNameFor(model => model.Company) - - @Html.DisplayNameFor(model => model.InstructionSet) -
+ @Html.DisplayNameFor(model => model.Name) + + @Html.DisplayNameFor(model => model.ModelCode) + + @Html.DisplayNameFor(model => model.Introduced) + + @Html.DisplayNameFor(model => model.Speed) + + @Html.DisplayNameFor(model => model.Package) + + @Html.DisplayNameFor(model => model.Gprs) + + @Html.DisplayNameFor(model => model.GprSize) + + @Html.DisplayNameFor(model => model.Fprs) + + @Html.DisplayNameFor(model => model.FprSize) + + @Html.DisplayNameFor(model => model.Cores) + + @Html.DisplayNameFor(model => model.ThreadsPerCore) + + @Html.DisplayNameFor(model => model.Process) + + @Html.DisplayNameFor(model => model.ProcessNm) + + @Html.DisplayNameFor(model => model.DieSize) + + @Html.DisplayNameFor(model => model.Transistors) + + @Html.DisplayNameFor(model => model.DataBus) + + @Html.DisplayNameFor(model => model.AddrBus) + + @Html.DisplayNameFor(model => model.SimdRegisters) + + @Html.DisplayNameFor(model => model.SimdSize) + + @Html.DisplayNameFor(model => model.L1Instruction) + + @Html.DisplayNameFor(model => model.L1Data) + + @Html.DisplayNameFor(model => model.L2) + + @Html.DisplayNameFor(model => model.L3) + + @Html.DisplayNameFor(model => model.Company) + + @Html.DisplayNameFor(model => model.InstructionSet) +
@Html.DisplayFor(modelItem => item.Name) @@ -200,11 +205,23 @@ @Html.DisplayFor(modelItem => item.InstructionSet.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/ProcessorsByMachines/Index.cshtml b/cicm_web/Areas/Admin/Views/ProcessorsByMachines/Index.cshtml index 5c51a50e..c90e3b67 100644 --- a/cicm_web/Areas/Admin/Views/ProcessorsByMachines/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/ProcessorsByMachines/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,25 +39,29 @@

Index

- Create New + + Create New +

- - - - - - + + + + + + -@foreach (var item in Model) { + @foreach(ProcessorsByMachine item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Speed) - - @Html.DisplayNameFor(model => model.Machine) - - @Html.DisplayNameFor(model => model.Processor) -
+ @Html.DisplayNameFor(model => model.Speed) + + @Html.DisplayNameFor(model => model.Machine) + + @Html.DisplayNameFor(model => model.Processor) +
@Html.DisplayFor(modelItem => item.Speed) @@ -68,11 +73,23 @@ @Html.DisplayFor(modelItem => item.Processor.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/Resolutions/Index.cshtml b/cicm_web/Areas/Admin/Views/Resolutions/Index.cshtml index 549023f4..6d1d0794 100644 --- a/cicm_web/Areas/Admin/Views/Resolutions/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/Resolutions/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,31 +39,35 @@

Index

- Create New + + Create New +

- - - - - - - - + + + + + + + + -@foreach (var item in Model) { + @foreach(Resolution item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Width) - - @Html.DisplayNameFor(model => model.Height) - - @Html.DisplayNameFor(model => model.Colors) - - @Html.DisplayNameFor(model => model.Palette) - - @Html.DisplayNameFor(model => model.Chars) -
+ @Html.DisplayNameFor(model => model.Width) + + @Html.DisplayNameFor(model => model.Height) + + @Html.DisplayNameFor(model => model.Colors) + + @Html.DisplayNameFor(model => model.Palette) + + @Html.DisplayNameFor(model => model.Chars) +
@Html.DisplayFor(modelItem => item.Width) @@ -80,11 +85,23 @@ @Html.DisplayFor(modelItem => item.Chars) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/SoundSynths/Index.cshtml b/cicm_web/Areas/Admin/Views/SoundSynths/Index.cshtml index c90e7172..2868c589 100644 --- a/cicm_web/Areas/Admin/Views/SoundSynths/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/SoundSynths/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,46 +39,50 @@

Index

- Create New + + Create New +

- - - - - - - - - - - - - + + + + + + + + + + + + + -@foreach (var item in Model) { + @foreach(SoundSynth item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Name) - - @Html.DisplayNameFor(model => model.ModelCode) - - @Html.DisplayNameFor(model => model.Introduced) - - @Html.DisplayNameFor(model => model.Voices) - - @Html.DisplayNameFor(model => model.Frequency) - - @Html.DisplayNameFor(model => model.Depth) - - @Html.DisplayNameFor(model => model.SquareWave) - - @Html.DisplayNameFor(model => model.WhiteNoise) - - @Html.DisplayNameFor(model => model.Type) - - @Html.DisplayNameFor(model => model.Company) -
+ @Html.DisplayNameFor(model => model.Name) + + @Html.DisplayNameFor(model => model.ModelCode) + + @Html.DisplayNameFor(model => model.Introduced) + + @Html.DisplayNameFor(model => model.Voices) + + @Html.DisplayNameFor(model => model.Frequency) + + @Html.DisplayNameFor(model => model.Depth) + + @Html.DisplayNameFor(model => model.SquareWave) + + @Html.DisplayNameFor(model => model.WhiteNoise) + + @Html.DisplayNameFor(model => model.Type) + + @Html.DisplayNameFor(model => model.Company) +
@Html.DisplayFor(modelItem => item.Name) @@ -110,11 +115,23 @@ @Html.DisplayFor(modelItem => item.Company.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file diff --git a/cicm_web/Areas/Admin/Views/StorageByMachines/Index.cshtml b/cicm_web/Areas/Admin/Views/StorageByMachines/Index.cshtml index 9f4e9858..2009d58d 100644 --- a/cicm_web/Areas/Admin/Views/StorageByMachines/Index.cshtml +++ b/cicm_web/Areas/Admin/Views/StorageByMachines/Index.cshtml @@ -29,6 +29,7 @@ // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } +@using Cicm.Database.Models @model IEnumerable @{ @@ -38,28 +39,32 @@

Index

- Create New + + Create New +

- - - - - - - + + + + + + + -@foreach (var item in Model) { + @foreach(StorageByMachine item in Model) + { -} + } -
- @Html.DisplayNameFor(model => model.Type) - - @Html.DisplayNameFor(model => model.Interface) - - @Html.DisplayNameFor(model => model.Capacity) - - @Html.DisplayNameFor(model => model.Machine) -
+ @Html.DisplayNameFor(model => model.Type) + + @Html.DisplayNameFor(model => model.Interface) + + @Html.DisplayNameFor(model => model.Capacity) + + @Html.DisplayNameFor(model => model.Machine) +
@Html.DisplayFor(modelItem => item.Type) @@ -74,11 +79,23 @@ @Html.DisplayFor(modelItem => item.Machine.Name) - Edit | - Details | - Delete + + Details + + + Edit + + + Delete +
+ \ No newline at end of file