Convert to local time on index.hbs, split date and time values. Closes #24, #27

This commit is contained in:
jkaplon 2015-07-28 14:07:56 -04:00
parent 5f4a1ccac7
commit 544f8ad54f
2 changed files with 13 additions and 1 deletions

View File

@ -72,6 +72,16 @@ app.get('/', function(req, res){
console.log(err);
} else {
//console.log(rows);
// Loop over elements in rows array, convert ugly UTC times to pretty local times.
rows.forEach(function(row){
var localDtTm = moment.utc(new Date(row.MaxPub));
localDtTm = moment(localDtTm).tz('America/New_York').format('MM-DD-YYYY HH:mm:ss');
row.MaxPub = localDtTm;
row.MaxPubDate = moment(localDtTm).format('MM-DD-YYYY');
row.MaxPubTime = moment(localDtTm).format('h:mm:ss a');
});
res.render('index', {cores: rows}, function(err, html) {
if(err !== null) {
console.log(err);

View File

@ -8,6 +8,7 @@
<th>Location</th>
<th>Last Update</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
@ -33,7 +34,8 @@
<a href="https://particle.kaplon.us/core/edit/{{this.coreId}}" class="btn btn-primary">Edit Details</a>
{{/if}}
</td>
<td>{{this.MaxPub}}</td>
<td>{{this.MaxPubDate}}</td>
<td>{{this.MaxPubTime}}</td>
<td>{{this.MaxStatus}}</td>
</tr>
{{/each}}