List Terms and Conditions
Listing The Terms and Conditions
The Terms and Conditions, by default, print on the bid sheet (or display pages) using a conditional placeholder. This can be configured through the Item description format setting on the Bid Sheets (or display page) Advanced tab.
In this example, from the main Auction Dashboard, click through Printing, then Bid Sheets and then its Advanced tab. You can see the Terms and Conditions placeholder here.
{% if TermsAndConditions %}{{TermsAndConditions}}{% endif %}
Add Baskets and Partial Items
If you have set up the format to include the Basket contents, you can include the terms and conditions for each partial item by adding the following within the for
loop:
{{ item.TermsAndConditions }}
For example, to display the Partial Items "item#" and item "Title" followed by the partial item's "Description" and its "Terms and Conditions" you could use the following:
{% for item in Contents -%}
{{ item.Index }} : {{ item.Title }}
{{ item.Description }} {{ item.TermsAndConditions }}
{% endfor -%}
To include the Terms and Conditions for the basket item itself (not the partial items), make sure the following code is not within the for
loop.
{% if TermsAndConditions %}{{TermsAndConditions}}{% endif %}
For example, to display the Partial Items "item#" and item "Title" followed by the partial item's "Description" and its "Terms and Conditions" and then followed by the "Basket" item's Terms and Conditions you could use:
{% for item in Contents -%}
{{ item.Index }} : {{ item.Title }}
{{ item.Description }} {{ item.TermsAndConditions }}
{% endfor -%}
{% if TermsAndConditions %}{{TermsAndConditions}}{% endif %}
Last reviewed: March 2023