@using BTCPayServer.Client @model BTCPayServer.Models.StoreViewModels.ListStoresViewModel @{ ViewData.SetActivePage(StoreNavPages.Index, Model.Archived ? "Archived Stores" : "Stores"); }

@ViewData["Title"]

@if (Model.Stores.Any()) { @foreach (var store in Model.Stores) { }
Store Name
@store.StoreName @store.StoreName @if (store.Archived) { archived }
} else {

There are no stores yet. Create a store.

}