{% extends "base.html" %} {% block title %}My Categories — Contacts App{% endblock %} {% block app_content %}

Welcome, {{ current_user.username }} 👋

Select a category from the sidebar to view its contacts, or create a new one.

{% if categories %}
{{ categories|length }}
Categories
{{ categories|map(attribute='contacts')|list|map('length')|sum }}
Total Contacts
{% else %}
No categories yet.
Create your first category
{% endif %}
{% endblock %}