@model WebfrontCore.ViewModels.ActionInfo @{ Layout = null; }
@foreach (var input in Model.Inputs) { string inputType = input.Type ?? "text"; string value = input.Value ?? ""; if (input.Type != "hidden") {
@input.Label
@if (inputType == "select") { } else if (inputType == "checkbox") {
} else { }
} else { } }