yavsc/src/Yavsc.Org/Views/BrusherProfile/Index.cshtml

25 lines
495 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model Yavsc.Models.Haircut.BrusherProfile
@{
2026-06-04 12:13:37 +01:00
ViewBag.Title = "Profile coiffeur";
2019-01-01 16:28:47 +00:00
}
2026-06-04 12:13:37 +01:00
<h2>@ViewBag.Title</h2>
2019-01-01 16:28:47 +00:00
<div>
<hr />
@if (Model!=null) {
@Html.DisplayFor(model => model)
<p>
2023-03-20 09:13:16 +00:00
<a asp-action="Edit" >Edit</a>
<a asp-action="Delete" asp-route-id="@Model.UserId">Delete</a>
2019-01-01 16:28:47 +00:00
</p>
}
else {
<p>
2023-03-20 09:13:16 +00:00
Aucun profile renseigné"]
<a asp-action="Create" class="btn btn-success">Renseigner ce paramêtrage"]</a>
2019-01-01 16:28:47 +00:00
</p>
}
</div>