{% extends 'base.html' %} {% block title %} - Statistics{% endblock %} {% block main %}
Collection Overview
{{ collection_summary.unique_sets }}
Unique Sets
{{ collection_summary.unique_parts }}
Unique Parts
{{ collection_summary.unique_minifigures }}
Unique Figs
Financial Summary
{{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(financial_summary.total_cost) }}
Total Investment
{{ financial_summary.sets_with_price }}
Sets with Price
{{ financial_summary.percentage_with_price }}%
Price Coverage
Average
{{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(financial_summary.average_cost) }}
Range
{{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(financial_summary.minimum_cost) }} - {{ config['PURCHASE_CURRENCY'] }}{{ "%.2f"|format(financial_summary.maximum_cost) }}
Issues & Storage
{% if config['HIDE_ALL_STORAGES'] %}
{{ collection_summary.storage_locations_used }}
{% else %}
{{ collection_summary.storage_locations_used }}
{% endif %} Storage Locations
{{ collection_summary.purchase_locations_used }}
Purchase Locations
{% if config['STATISTICS_SHOW_CHARTS'] %}
Sets by Release Year
Parts by Release Year
Minifigures by Release Year
{% endif %}
{% if theme_statistics %}
{% for theme in theme_statistics[:10] %} {% endfor %}
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 %}
{% if theme_statistics|length > 10 %} {% endif %}
{% endif %} {% if storage_statistics %}
{% for storage in storage_statistics %} {% endfor %}
Storage Location Sets Parts (lots, individual parts) Minifigures (individual minifigures) Value
{{ storage.storage_name or 'Unknown' }} {{ storage.set_count }} {{ "{:,}".format(storage.total_parts) }}{% if storage.lot_count or storage.individual_part_count %} ({% if storage.lot_count %}{{ storage.lot_count }} lot{{ 's' if storage.lot_count != 1 else '' }}{% endif %}{% if storage.lot_count and storage.individual_part_count %}, {% endif %}{% if storage.individual_part_count %}{{ "{:,}".format(storage.individual_part_count) }} individual{% endif %}){% endif %} {{ storage.total_minifigures }}{% if storage.individual_minifig_count %} ({{ storage.individual_minifig_count }} individual){% endif %} {% if storage.total_value %} {{ config['PURCHASE_CURRENCY'] }}{{ "%.0f"|format(storage.total_value) }} {% else %} - {% endif %}
{% endif %}
{% if purchase_location_statistics %}
{% for location in purchase_location_statistics %} {% endfor %}
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 %}
{% endif %}
{% if sets_by_year_statistics %}
Sets by Release Year
Statistics grouped by when LEGO released the sets
{% for year in sets_by_year_statistics[:15] %} {% endfor %}
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 %}
{% if sets_by_year_statistics|length > 15 %} {% endif %}
{% endif %} {% if purchases_by_year_statistics %}
Purchases by Year
Statistics grouped by when you purchased the sets
{% for year in purchases_by_year_statistics %} {% endfor %}
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 %}
{% if year_summary %} {% endif %}
{% endif %}
{% if year_summary and (year_summary.peak_collection_year or year_summary.oldest_set_year) %}
{% if year_summary.oldest_set_year and year_summary.newest_set_year %}
{{ year_summary.oldest_set_year }} - {{ year_summary.newest_set_year }}
Set Year Range
{% endif %} {% if year_summary.peak_collection_year %}
{{ year_summary.peak_collection_year }}
Most Sets from Year ({{ year_summary.max_sets_in_year }} sets)
{% endif %} {% if year_summary.years_represented %}
{{ year_summary.years_represented }}
Years Represented
{% endif %} {% if year_summary.years_with_purchases %}
{{ year_summary.years_with_purchases }}
Years with Purchases
{% endif %}
{% endif %}
{% if config['STATISTICS_SHOW_CHARTS'] %} {% endif %} {% endblock %}