@model ListTransactionsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["Title"] = "Manage wallet"; ViewData.SetActivePageAndTitle(WalletsNavPages.Transactions); } @if (TempData.HasStatusMessage()) {
Date | Label | Transaction Id | Balance | ||
---|---|---|---|---|---|
@transaction.Timestamp.ToBrowserDate() | @foreach (var label in transaction.Labels) { @label.Value } | @transaction.Id | @if (transaction.Positive) {@transaction.Balance | } else {@transaction.Balance | }
@if (string.IsNullOrEmpty(transaction.Comment))
{
}
else
{
}
|