@using Microsoft.AspNetCore.Mvc.TagHelpers @using BTCPayServer.Abstractions.Models @model List @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["NavPartialName"] = "../UIStores/_Nav"; ViewData.SetActivePage(StoreNavPages.Forms, "Forms"); var storeId = Context.GetCurrentStoreId(); }

@ViewData["Title"]

Create Form
@if (Model.Any()) { @foreach (var item in Model) { }
Name Actions
@item.Name Remove - View
} else {

There are no forms yet.

}