{% extends "base.html" %} {% load render_table from django_tables2 %} {% load crispy_forms_tags %} {% block title %}Chat messages for {{ auction }}{% endblock %} {% load static %} {% block content %} {% include 'auction_ribbon.html' %} These are messages users have posted on lots in your auction. Deleted messages will show up here, but won't be visible to users on the lot page. {% if not auction.is_chat_allowed %}Chat has been disabled in this auction.{% endif %}

{% for history in object_list %} {% endfor %}
User Timestamp Message
{% if history.auctiontos_pk %} {{ history.user }}{% else %}{{ history.user }}
User has not joined your auction{% endif %}
{{ history.timestamp }} {{ history.message }} {% if not history.removed %} Delete {% else %} Deleted {% endif %}
on {{ history.lot.lot_name }}
{% if not object_list %}No chat messages in your auction yet.{% endif %}

{% endblock %} {% block extra_js %} {% endblock %}