Split date and time on device detail screen, relates to issue #24.

This commit is contained in:
jkaplon 2015-07-24 14:41:00 -04:00
parent 76fd5ef9a1
commit 35f34fedbb
2 changed files with 6 additions and 2 deletions

View File

@ -150,6 +150,8 @@ app.get('/core/:id', function(req, res){
var localDtTm = moment.utc(row.published_at);
localDtTm = moment(localDtTm).tz('America/New_York').format('MM-DD-YYYY HH:mm:ss');
row.published_at = localDtTm;
row.pubDate = moment(localDtTm).format('MM-DD-YYYY');
row.pubTime = moment(localDtTm).format('h:mm:ss a');
});
res.render('core', {alerts: rows}, function(err, html) {

View File

@ -16,14 +16,16 @@
<table class="table table-striped">
<thead>
<tr>
<th>Timestamp</th>
<th>Date</th>
<th>Time</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{{#each alerts}}
<tr>
<td>{{this.published_at}}</td>
<td>{{this.pubDate}}</td>
<td>{{this.pubTime}}</td>
<td>{{this.status}}</td>
</tr>
{{/each}}