{% extends 'base.html' %} {% block title %} - Statistics{% endblock %} {% block main %}
| Theme | Sets | Parts | Minifigures | Spent |
|---|---|---|---|---|
| {{ theme.theme_name }} | {{ theme.set_count }} | {{ "{:,}".format(theme.total_parts) }} | {{ theme.total_minifigures }} | {% if theme.total_spent %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(theme.total_spent) }} {% else %} - {% endif %} |
| Storage Location | Sets | Parts | Minifigures | Value |
|---|---|---|---|---|
| {{ storage.storage_name or 'Unknown' }} | {{ storage.set_count }} | {{ "{:,}".format(storage.total_parts) }} | {{ storage.total_minifigures }} | {% if storage.total_value %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(storage.total_value) }} {% else %} - {% endif %} |
| Purchase Location | Sets | Parts | Minifigures | Total Spent | Avg. Price | Price Range |
|---|---|---|---|---|---|---|
| {{ location.location_name or 'Unknown' }} | {{ location.set_count }} | {{ "{:,}".format(location.total_parts) }} | {{ location.total_minifigures }} | {% if location.total_spent %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(location.total_spent) }} {% else %} - {% endif %} | {% if location.avg_price %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(location.avg_price) }} {% else %} - {% endif %} | {% if location.min_price and location.max_price %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(location.min_price) }}-{{ "%.0f"|format(location.max_price) }} {% else %} - {% endif %} |
| Year | Unique | Total | Parts | Minifigures | Spent | Avg/Set |
|---|---|---|---|---|---|---|
| {{ year.year }} {% if year.unique_themes > 1 %} {{ year.unique_themes }} themes {% endif %} | {{ year.unique_sets }} | {{ year.total_sets }} | {{ "{:,}".format(year.total_parts) }} | {{ year.total_minifigures }} | {% if year.total_spent %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(year.total_spent) }} {% else %} - {% endif %} | {% if year.avg_price_per_set %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(year.avg_price_per_set) }} {% else %} - {% endif %} |
| Year | Unique | Total | Parts | Minifigures | Spent | Avg/Set |
|---|---|---|---|---|---|---|
| {{ year.purchase_year }} | {{ year.unique_sets }} | {{ year.total_sets }} | {{ "{:,}".format(year.total_parts) }} | {{ year.total_minifigures }} | {% if year.total_spent %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(year.total_spent) }} {% else %} - {% endif %} | {% if year.avg_price_per_set %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(year.avg_price_per_set) }} {% else %} - {% endif %} |