2022-04-19 19:43:58 -04:00
|
|
|
@using Humanizer
|
|
|
|
@model WebfrontCore.ViewModels.ActionInfo
|
2018-03-27 00:54:20 -04:00
|
|
|
@{
|
|
|
|
Layout = null;
|
|
|
|
}
|
2022-04-19 19:43:58 -04:00
|
|
|
<h5 class="modal-title mb-10">@Model.Name.Titleize()</h5>
|
|
|
|
@if (Model.Inputs.Any())
|
|
|
|
{
|
|
|
|
<hr class="mb-10"/>
|
|
|
|
}
|
2019-08-04 18:06:07 -04:00
|
|
|
<form class="action-form @(Model.ShouldRefresh ? "refreshable" : "")" action="/Action/@Model.Action">
|
2018-04-04 15:38:34 -04:00
|
|
|
@foreach (var input in Model.Inputs)
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
var inputType = input.Type ?? "text";
|
|
|
|
var value = input.Value ?? "";
|
2018-03-27 00:54:20 -04:00
|
|
|
|
2019-07-13 21:45:25 -04:00
|
|
|
if (input.Type != "hidden")
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
<div class="input-group mb-10">
|
2018-09-02 17:59:27 -04:00
|
|
|
|
2019-07-13 21:45:25 -04:00
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text" id="basic-addon-@input.Name">@input.Label</span>
|
2018-09-02 17:59:27 -04:00
|
|
|
</div>
|
|
|
|
|
2019-07-13 21:45:25 -04:00
|
|
|
@if (inputType == "select")
|
|
|
|
{
|
|
|
|
<select name="@input.Name" class="form-control" aria-label="@input.Name" aria-describedby="basic-addon-@input.Name">
|
|
|
|
@foreach (var item in input.Values)
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
<option value="@item.Key">
|
|
|
|
<color-code value="@item.Value"></color-code>
|
|
|
|
</option>
|
2019-07-13 21:45:25 -04:00
|
|
|
}
|
|
|
|
</select>
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (inputType == "checkbox")
|
|
|
|
{
|
|
|
|
<div class="btn-group-toggle" data-toggle="buttons">
|
|
|
|
<label class="btn btn-primary active">
|
|
|
|
<input type="checkbox" name="@input.Name" @(input.Checked ? "checked" : "") autocomplete="off">@input.Label
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
}
|
2018-04-04 15:38:34 -04:00
|
|
|
|
2019-07-13 21:45:25 -04:00
|
|
|
else
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
<input type="@inputType" name="@input.Name" value="@value" class="form-control @(input.Required ? "required" : "")" placeholder="@input.Placeholder" aria-label="@input.Name" aria-describedby="basic-addon-@input.Name">
|
2019-07-13 21:45:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
<input type="@inputType" name="@input.Name" value="@value" hidden="hidden">
|
|
|
|
}
|
2018-04-04 15:38:34 -04:00
|
|
|
}
|
2022-04-19 19:43:58 -04:00
|
|
|
@if (Model.Inputs.Any())
|
|
|
|
{
|
|
|
|
<hr class="mb-10"/>
|
|
|
|
}
|
|
|
|
<div class="ml-auto">
|
|
|
|
<button type="submit" class="btn btn-primary">@Model.ActionButtonLabel</button>
|
2022-04-22 17:56:29 -04:00
|
|
|
<a href="#" class="btn mr-5" role="button" onclick="halfmoon.toggleModal('actionModal');">Close</a>
|
2022-04-19 19:43:58 -04:00
|
|
|
</div>
|
2022-04-08 18:14:04 -04:00
|
|
|
</form>
|