refactor: поправил стили для отображения телефонов.

parent e6df9e62
......@@ -96,10 +96,9 @@ namespace PhoneStore.Controllers
//TODO: Добавить удаление файла изображения.
var phone = _db.Phones.FirstOrDefault(p => p.Id == phoneId);
if (phone is null)
return BadRequest();
return RedirectToAction("Error", "Errors", new {statusCode = 777});
_db.Phones.Remove(phone);
_db.SaveChanges();
return RedirectToAction("Index");
}
......
......@@ -33,7 +33,7 @@ else
@foreach (var phone in Model.Phones)
{
<tr>
<td><img class="phone_img" src="@phone.Image" alt="картинка паламатая"/></td>
<td class="w_15 pr-2"><img class="phone_img w-100" src="@phone.Image" alt="картинка паламатая"/></td>
<td>@phone.Name</td>
<td>@phone.Brand.Name</td>
<td>@phone.Price</td>
......
......@@ -74,3 +74,6 @@ body {
background-color: #6f42c1;
border-color: #6f42c1;
}
.w_15 {
width: 15%;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment