diff --git a/app/templates/admin/leftover_media.html b/app/templates/admin/leftover_media.html index 6b0ce03..1fd0283 100644 --- a/app/templates/admin/leftover_media.html +++ b/app/templates/admin/leftover_media.html @@ -72,7 +72,7 @@
Hostname: {{ player.hostname }}
Last Seen: {% if player.last_seen %} - {{ player.last_seen.strftime('%Y-%m-%d %H:%M:%S') }} + {{ player.last_seen | localtime('%Y-%m-%d %H:%M:%S') }} {% else %} Never {% endif %} @@ -389,7 +389,7 @@ document.addEventListener('keydown', function(event) {
Version: {{ current_playlist.version }}
Content Items: {{ current_playlist.contents.count() }}
- Updated: {{ current_playlist.updated_at.strftime('%Y-%m-%d %H:%M') }} + Updated: {{ current_playlist.updated_at | localtime }}
Player ID: {{ player.id }}
Created: {{ player.created_at.strftime('%Y-%m-%d %H:%M') if player.created_at else 'N/A' }}
Created: {{ (player.created_at | localtime) if player.created_at else 'N/A' }}
Orientation: {{ player.orientation }}
Last Heartbeat: {% if player.last_heartbeat %} - {{ player.last_heartbeat.strftime('%Y-%m-%d %H:%M:%S') }} + {{ player.last_heartbeat | localtime('%Y-%m-%d %H:%M:%S') }} {% else %} Never {% endif %} diff --git a/app/templates/players/player_page.html b/app/templates/players/player_page.html index 80b5d32..8fe8c7a 100644 --- a/app/templates/players/player_page.html +++ b/app/templates/players/player_page.html @@ -64,7 +64,7 @@