{% extends 'base.html.j2' %} {% block title %} Items on {{ date }} {% endblock title %} {% block content_before %} Items on {{ date }} {% endblock content_before %} {% block content %}
Item | Count | Breakdown | Rarity | {% for lot, details in data.items() %}
---|---|---|---|
{{ 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 }} |