{% extends "base.html" %} {% set heading = "Schengen area compliance report" %} {% block title %}{{ heading }} - Edward Betts{% endblock %} {% block content %}
Entry Date | Exit Date | Country | Days | Trip |
---|---|---|---|---|
{{ stay.entry_date.strftime('%Y-%m-%d') }} | {% if stay.exit_date %} {{ stay.exit_date.strftime('%Y-%m-%d') }} {% else %} ongoing {% endif %} | {{ stay.country | country_flag }} {{ stay.country.upper() }} | {{ stay.days }} | {% if stay.trip_date and stay.trip_name %} {{ stay.trip_name }} {% else %} - {% endif %} |
Trip Date | Trip Name | Days Used | Days Remaining | Status |
---|---|---|---|---|
{{ trip_date.strftime('%Y-%m-%d') }} | {% for trip_obj in trip_list if trip_obj.start == trip_date %} {{ trip_obj.title }} {% endfor %} | {{ calculation.total_days_used }}/90 | {{ calculation.days_remaining }} | {% if calculation.is_compliant %} Compliant {% else %} Non-compliant {% endif %} |