Newer
Older
SimplePossibleThing / CQRSRazorPages / Pages / Index.cshtml
@Derek Comartin Derek Comartin on 16 Nov 2021 589 bytes Init
@page
@model IndexModel
@{
    ViewData["Title"] = "Home page";
}

<div class="text-center">
    <h2>All items:</h2>
        <ul class="list-group">
        @foreach (var inventoryItemListDto in Model.InventoryItems)
        {
            var q = new Dictionary<string, string>
            {
                { "id", inventoryItemListDto.Id.ToString() }
            };
            <li class="list-group-item">
                <a asp-page="/Details" asp-all-route-data="q">@inventoryItemListDto.Name</a>
            </li>
        }
        </ul>
        <a asp-page="/Add">Add</a>
</div>