Total auctions: {{ auctions.length }}
From: {{ fromDate }}
No auctions found in the last 3 days.
| Auction Number | Title | Description | Start Price | Created Date |
|---|---|---|---|---|
| {{ auction.auctionNum }} |
{{ auction.title || 'N/A' }}
|
{{ auction.description ? (auction.description.length > 150 ? auction.description.substring(0, 150) + '...' : auction.description) : 'N/A' }}
|
@if(auction.startPrice) {{ new Intl.NumberFormat('ru-BY', { style: 'currency', currency: 'BYN' }).format(auction.startPrice) }} @else N/A @end | {{ auction.createdAt.toFormat('dd.MM.yyyy HH:mm') }} |