@page @model EveryThing.Pages.Invoices.CreateModel @{ ViewData["Title"] = "Vnos fakture"; Layout = "~/Pages/Layouts/_Layout.cshtml"; }

@switch (ViewData["Type"]) { case 1: Naročila dobaviteljem break; case 0: Računi break; case 2: Dobavnice break; case 3: Naročila kupcev break; case 4: Kooperacije break; default: Fakture break; } / Vnos

Podatki fakture
@Html.Raw(Model.Invoice.PreText)
@Html.Raw(Model.Invoice.PostText)
@section Scripts { @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} }