{% extends "base.html" %} {% block title %}Dashboard — All You Can GET AI{% endblock %} {% block content %}

Welcome{% if user.get('email') %}, {{ user.email }}{% endif %}

Role: {{ user.get('role', 'user') }}

Start generating
{% if images %}

Uploaded reference images

{% for img in images %}
{{ img.filename }}

{{ img.filename }} — {{ (img.size_bytes / 1024) | round(1) }} KB

{% endfor %}
{% endif %} {% endblock %}