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

Hello, {{ current_user.user_name }}!

{% if app_aeroclub.user_has_ids_in_flight_logs %}
Flight Logs

Last Backup: {{ last_backup }}!

{% else %}
You don't have any flight logs yet.
{% endif %}
{% else %}
Please log in to continue.
{% endif %}
{% endblock %}