{% extends "base.html" %} {% load crispy_forms_tags %} {% load el_pagination_tags %} {% block title %} {% if lot_view_type == "all" %} Lots {% endif %} {% if lot_view_type == "watch" %} Watched items {% endif %} {% if lot_view_type == "mybids" %} Bids {% endif %} {% if lot_view_type == "mylots" %} Your lots {% endif %} {% if lot_view_type == "mywonlots" %} Won lots {% endif %} {% if lot_view_type == "user" %} {% if user == request.user %} Your lots{% else %} {% if user %}Lots from {{ user }}{%else%}Lots{%endif%} {% endif %} {% endif %} {% if auction %} for {{ auction }}{% endif %} {% endblock %} {% load static %} {% block content %} {% if routeByLastAuction and auction %} {% endif %}

{% if auction %}{% include 'auction_ribbon.html' %}{%endif%} {% if auction and lot_view_type == "user" %}
You are viewing only lots from {{ user }} {% else %} {% if not auction %} {% if lot_view_type == "all" %} Lots {% endif %} {% if lot_view_type == "watch" %} Watched lots {% endif %} {% if lot_view_type == "mybids" %} Bids {% endif %} {% if lot_view_type == "mylots" %} Your lots {% endif %} {% if lot_view_type == "user" %} All lots from {{ user }} {% endif %} {% if lot_view_type == "mywonlots" %} Lots you've won
Export my won lots CSV {% endif %} {% endif %} {% endif %}

Search and filter
{% if lot_view_type == "user" %} View user info for {{ user }}

{% endif %} {% if lotsAreHidden >= 0 %}{{lotsAreHidden}} categories are ignored{% endif %}

{{ filter.form | crispy }} {# alternative: {% crispy filter.form %} #} {% if lot_view_type == "mylots" or lot_view_type == "all" %}
{% if auction %}View {{ auction }} rules
{% if auction.can_submit_lots %} {% if auction_tos %}{% if auction.is_online or not auction.allow_bulk_adding_lots %}Add a lot{% else %} Add lots{% endif %} You can add lots to this auction until {{ auction.lot_submission_end_date }} {% else %} {% if not request.user.is_authenticated %} Login and join this auction {% else %} Join this auction at the bottom of this page to participate {%endif%} {%endif%} {% else %} {# {% if not auction.started and not auction.closed %}This auction hasn't started yet. You can add lots starting {{ auction.date_start }} {%endif%} #} {% endif %} {% endif %} {% endif %}
{% include page_template %} {% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}