{% extends "layout.html" %} {% block content %}
Started at: {{ active_entry.arrival_time.strftime('%Y-%m-%d %H:%M:%S') }}
| Date | Arrival | Departure | Duration | Actions |
|---|---|---|---|---|
| {{ entry.arrival_time.strftime('%Y-%m-%d') }} | {{ entry.arrival_time.strftime('%H:%M:%S') }} | {{ entry.departure_time.strftime('%H:%M:%S') if entry.departure_time else 'Active' }} | {{ (entry.duration // 3600)|string + 'h ' + ((entry.duration % 3600) // 60)|string + 'm' if entry.duration else 'N/A' }} |