{% extends 'base.html' %} {% block content %}
{% if current_user.is_authenticated %}

Hello, {{ current_user.user_name }}!

{% if current_user.auto_app.masini %}
{% for id_car, masina in current_user.auto_app.masini.items() %}
{{ masina }}

{% endfor %}
+ Add / Import a New Car
{% else %}
You don't have any cars yet.
+ Add / Import a Car {% endif %} {% else %}
Please log in to continue.
{% endif %}
{% endblock %}