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

Hello, {{ current_user.user_name }}!

{% if auto_app.masini %}
{% for id_car, (table_name, has_ids_in_masina_table, last_car_backup, last_car_backup_file, activ) in auto_app.masini.items() %} {% if activ %}
{{ table_name }}

Last Backup: {{ last_car_backup }}!

{% endif %} {% endfor %}
+ Add a New Car / Import an Old Car
{% else %}
You don't have any cars yet.
+ Add / Import a Car {% endif %}

{% if last_backup %}
{% else %} {% endif %} {% else %}
Please log in to continue.
{% endif %}
{% endblock %}