Auctions - Last 3 Days

Total auctions: {{ auctions.length }}

From: {{ fromDate }}

{{-- Flash messages --}} @if(flashMessages.has('success')) @end @if(flashMessages.has('error')) @end {{-- Parsing form --}}

Parse New Auctions

{{ csrfField() }}

Min: 1, Max: 10 pages

@if(auctions.length === 0)

No auctions found in the last 3 days.

@else
@each(auction in auctions) @end
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') }}
@end