@model List @{ ViewData["Title"] = "Loyalty Reward Claims"; }

Loyalty Reward Claims

Review and fulfill member reward redemptions.

@Model.Count Pending Claims
@if (TempData["Success"] != null) {
@TempData["Success"]
} @if (TempData["Error"] != null) {
@TempData["Error"]
}
@if (!Model.Any()) { } @foreach (var claim in Model) { }
Member ID Reward Point Cost Redeemed At Actions
No pending reward claims found.
@(claim.ExternalUserId?.Length >= 1 ? claim.ExternalUserId.Substring(0, Math.Min(2, claim.ExternalUserId.Length)) : "??")
Member #@claim.ExternalUserId Library Account
@claim.RewardName @claim.PointCost.ToString("N0") pts @claim.RedeemedAt.ToString("MMM dd, yyyy")