<%# locals: (account:) %>

<%= t(".make_model") %>

<%= [account.vehicle.make, account.vehicle.model].compact.join(" ").presence || t(".unknown") %>

<%= t(".year") %>

<%= account.vehicle.year || t(".unknown") %>

<%= t(".mileage") %>

<%= account.vehicle.mileage || t(".unknown") %>

<%= t(".purchase_price") %>

<%= format_money account.vehicle.purchase_price %>

<%= t(".current_price") %>

<%= format_money account.balance_money %>

<%= t(".trend") %>

<%= account.vehicle.trend.value %>

(<%= account.vehicle.trend.percent %>%)