| # | Artwork | Artist | Buyer | Amount | Status |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ line.artwork.title|truncate(35) }} | {% if line.artwork.artist %}{{ (line.artwork.contact_artist.last_name if line.artwork.contact_artist else (line.artwork.artist.last_name if line.artwork.artist else "")) }}{% endif %} | {% if line.buyer %} {% if line.buyer.contact_type == "individual" %}{{ line.buyer.last_name }}{% else %}{{ line.buyer.organisation }}{% endif %} {% else %}—{% endif %} | {{ line.price|ch_currency(line.currency) }} | {{ sale.status }} |