{% extends "base.html" %} {% block title %}Dashboard - {{ app_name }}{% endblock %} {% block content %}

Dashboard

Welcome back, {{ current_user.username }}!

Total Sets

{{ total_sets }}

Instructions

{{ total_instructions }}

Themes

{{ theme_stats|length }}

Years Collected

{{ year_stats|length }}

Top Themes
{% if theme_stats %}
    {% for theme, count in theme_stats %}
  • {{ theme }} {{ count }}
  • {% endfor %}
{% else %}

No themes yet. Add your first set!

{% endif %}
Sets by Year
{% if year_stats %}
    {% for year, count in year_stats %}
  • {{ year }} {{ count }}
  • {% endfor %}
{% else %}

No sets yet.

{% endif %}
Recently Added Sets
View All
{% if recent_sets %}
{% for set in recent_sets %}
{% if set.cover_image %} {{ set.set_name }} {% elif set.image_url %} {{ set.set_name }} {% else %}
{% endif %}
{{ set.set_number }} {% if set.is_moc %} {% endif %}

{{ set.set_name }}

{{ set.theme }} {{ set.year_released }}
{% endfor %}
{% else %}

No sets in your collection yet.

{% endif %}
{% endblock %}