@page "$pagepath$"
@using $vmnamespace$;
@inherits BasePage

<ValidateForm @ref="vform" Model="@Model" >
    <Row ItemsPerRow="ItemsPerRow.Two" RowType="RowType.Normal">
$formfields$
    </Row>
    <div class="modal-footer table-modal-footer">
        <Button Color="Color.Primary" Icon="fa fa-save" Text="@WtmBlazor.Localizer["Sys.Close"]" OnClick="OnClose" />
    </div>
</ValidateForm>

@code {

    private $modelname$VM Model = null;
    private ValidateForm vform { get; set; }
    [Parameter]
    public string id { get; set; }
$fieldinit$

    protected override async Task OnInitializedAsync()
    {
$init$
        var rv = await WtmBlazor.Api.CallAPI<$modelname$VM>($"/api/$modelname$/{id}");
        Model = rv.Data;
    }

    public void OnClose()
    {
        CloseDialog();
    }

}
