Files
duempelkas/src/Duempelkas.App/Components/Accounts/AccountCardList.razor
troogs f5c2be9339 Add Blazor application layer with UI components and pages
- Service interfaces and DTO models
- Dashboard page with account overview
- Account detail page with year/entry management
- Reusable components: AccountCard, EntryTable, YearSelector
- Dialog components: Add/Edit Account, Entry, Transfer, Year
- Main layout and routing configuration
2026-03-31 17:13:09 +02:00

13 lines
280 B
Plaintext

<div class="row g-3">
@foreach (var account in Accounts)
{
<div class="col-sm-6 col-md-4 col-lg-3">
<AccountCard Account="account" />
</div>
}
</div>
@code {
[Parameter] public List<AccountSummaryDto> Accounts { get; set; } = new();
}