This commit is contained in:
parent
5f4a1ccac7
commit
544f8ad54f
10
server.js
10
server.js
@ -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);
|
||||
|
@ -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}}
|
||||
|
Loading…
Reference in New Issue
Block a user