{% extends base_template_name %} {% load crispy_forms_tags %} {% load currency_filters %} {% block title %} Invoice for {{ invoice.label }} {% endblock %} {% load static %} {% block extra_js %} {% if is_admin %} {% endif %} {% if print_label_link and not invoice.printed and not is_admin %} {% endif %} {% endblock %} {% block content %} {% if show_links %}{% include 'auction_ribbon.html' %}{% endif %}
| Contact info: | {% if invoice.auctiontos_user.bidder_number %}Bidder number: {{ invoice.auctiontos_user.bidder_number}} {% endif %} {{ invoice.auctiontos_user.name|default:""}} {% if invoice.auctiontos_user.address %}{{ invoice.auctiontos_user.address| linebreaksbr}} {% endif %} {{ invoice.auctiontos_user.email|default:"" }} {{ invoice.auctiontos_user.phone_as_string|default:"" }} |
| Auction: |
{% if show_links %}
{{ auction }}
{% else %}
{{ auction }}
{%endif%}
|
| Status: | {{ invoice.get_status_display }} |
| Location: | {{ location.name }} {% if location.contact_person %} Lost? Running late? Contact: {{location.contact_person.name | default:""}} {{location.contact_person.email | default:"" | urlize}} {{location.contact_person.phone_number | default:"" }} {% endif %} {% if location.description %}{{ location.description }} on {%endif%}{{ location.pickup_time }} {% if location.second_pickup_time %} You must also come back on {{ location.second_pickup_time }} to pick up lots purchased from other locations{%endif%} {% if show_links %}{% endif %} |
| Total payout | {{ invoice.currency_symbol }}{{ invoice.total_sold|floatformat:2 }} |
| Total bought | {{ invoice.currency_symbol }}{{ invoice.total_bought|floatformat:2 }} |
| Auction promotion | {{ invoice.currency_symbol }}{{ invoice.first_bid_payout|floatformat:2 }} |
| {{ adjustment.notes }} | {{ adjustment.display }} |
| {{ payment.payment_method }}{% if payment.receipt_number %} (#{{ payment.receipt_number }}){% elif payment.external_id %} ({{ payment.external_id }}){% endif %} | {{ invoice.currency_symbol }}{{ payment.amount|floatformat:2 }} |
| # | Lot | Winner | {% if auction.multi_location %}Winner Location | {% endif %}Price | Club cut | Net |
|---|---|---|---|---|---|---|
| {{ lot.lot_number_display }} | {% if show_links %} {% if is_admin %} {{ lot.lot_name }} {% else %} {{ lot.lot_name }} {% endif %} {% else %} {{ lot.lot_name }} {% endif%} {% if lot.partial_refund_percent %}({{ lot.partial_refund_percent }}% refund){% endif %} {% if lot.bap_points_awarded and not viewer_has_bap %}Breeder points: {{ lot.bap_points_awarded }}{% endif %} {% if viewer_has_bap and show_links and lot.i_bred_this_fish %}{% include "auctions/bap_lot_buttons.html" with default_points=bap_default_points %}{% endif %} | {% if lot.winning_price %} {% if show_links and is_admin %} {{ lot.winner_name }} {% else %} {{ lot.winner_name }} {% endif %} {% else %} Not sold {% endif %} | {% if auction.multi_location %}{% if lot.auctiontos_winner %} {{ lot.winner_location }} {% endif %} | {% endif %}{% if lot.winning_price %} {{ invoice.currency_symbol }}{{ lot.winning_price|floatformat:2 }} {% else %} {% if lot.banned %} Removed {% else %} Not sold {% endif %} {% endif %} | {{ invoice.currency_symbol }}{{ lot.club_cut|floatformat:2 }}{% if lot.pre_register_discount %}*{% endif %} | {% if lot.donation %} Donation {% else %} {{ invoice.currency_symbol }}{{ lot.your_cut|floatformat:2 }} {% endif %} |
| # | Lot | {% if auction.multi_location %}Location | {% endif %} {% if is_admin %}Seller | {% endif %}Price |
|---|---|---|---|---|
| {{ lot.lot_number_display }} | {% if show_links %} {% if is_admin %} {{ lot.lot_name }} {% else %} {{ lot.lot_name }} {%endif%} {% else %} {{ lot.lot_name }} {% endif %} {% if lot.partial_refund_percent %}({{ lot.partial_refund_percent }}% refund){% endif %} | {% if auction.multi_location %}{{ lot.location }} | {% endif %} {% if is_admin %}{% if show_links %} {{ lot.seller_name }} {% else %} {{ lot.seller_name }} {% endif %} | {% endif %}{{ invoice.currency_symbol }}{{ lot.final_price|floatformat:2 }} |