From ce4c7a26cdf89dff39c9fb987dbda6a6d947cad2 Mon Sep 17 00:00:00 2001 From: Daniele Sluijters Date: Thu, 13 Mar 2014 11:49:00 +0100 Subject: [PATCH] Swap timestamp format to ISO and 24h clock. --- puppetboard/static/js/timestamps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppetboard/static/js/timestamps.js b/puppetboard/static/js/timestamps.js index c682c09..a5dedd8 100644 --- a/puppetboard/static/js/timestamps.js +++ b/puppetboard/static/js/timestamps.js @@ -16,7 +16,7 @@ jQuery(function ($) { if (result == '') { tstamp.text('Unknown'); } else { - tstamp.text(localise_timestamp(tstring).format('LLLL')); + tstamp.text(localise_timestamp(tstring).format('MMM DD YYYY - HH:mm:ss')); }; });