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

Dashboard

Welcome back, {{ current_user.username }}! 🎉

Total Sets

{{ total_sets }}

in your collection
Instructions

{{ total_instructions }}

PDFs & images
Themes

{{ theme_stats|length }}

unique themes
Years Collected

{{ year_stats|length }}

different years
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 %} MOC {% endif %}

{{ set.set_name }}

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

No sets in your collection yet

Start building your LEGO library by adding your first set!

{% endif %}
{% if not recent_sets %}

Getting Started

Add a Set

Add your first LEGO set or MOC to begin organizing your collection

Upload Instructions

Upload PDF or image files of your instruction manuals

Search & Manage

Easily find and manage all your instructions in one place

{% endif %} {% endblock %}