19 lines
610 B
Plaintext
19 lines
610 B
Plaintext
@model WebVentaCoche.Models.Product
|
|
|
|
<h2>Detalles del Producto</h2>
|
|
|
|
<p><strong>ID:</strong> @Model.Id</p>
|
|
<p><strong>Nombre:</strong> @Model.Name</p>
|
|
<p><strong>Descripción corta:</strong> @Model.ShortDescription</p>
|
|
<p><strong>Descripción larga:</strong> @Model.LongDescription</p>
|
|
<p><strong>Precio:</strong> @Model.Price €</p>
|
|
|
|
@if (!string.IsNullOrEmpty(Model.ImagePath))
|
|
{
|
|
<p><strong>Imagen:</strong></p>
|
|
<img src="@Model.ImagePath" alt="@Model.Name" style="max-width: 300px; height: auto;" />
|
|
}
|
|
|
|
<a href="@Url.Action("Index", "Products")" class="btn btn-secondary">Volver a la lista</a>
|
|
|