This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Areas/Admin/Views/Carousel/Create.cshtml

12 lines
247 B
Plaintext

@model Carousel
@{
ViewData["Title"] = "Carousel Creation";
}
<h2>@ViewData["Title"]</h2>
<h3>@ViewData["Message"]</h3>
<p>Create new carousel item.</p>
@{ViewBag.Action = "Create";}
@await Html.PartialAsync("PartialForm_EditCreate", Model)