{% extends 'base.html.j2' %} {% block title %} Items on {{ date }} {% endblock title %} {% block content_before %} Items on {{ date }} {% endblock content_before %} {% block content %}
{% for lot, details in data.items() %} {% endfor %}
Item Count Breakdown Rarity
{{ lot|get_lot_name }} {% if details.chars %} {{ details.item_count }} {% else %} {{ details }} {% endif %} {% if details.chars %} {% for char, value in details.chars|dictsort(false, 'value')|reverse %} {{char}}: {{value}}
{% endfor %} {% else %} Missing {% endif %}
{{ lot|get_lot_rarity }}
{% endblock %} {% block js %} {{ super () }} {% endblock %}