Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTaylor Laine
9,629 PointsChange it to real post time
Really want to make it say the real time. Why is it saying 45 years?
2 Answers
Joao Pescada
19,485 PointsDid you get it working? In the stream.html template I updated from:
data-time="{{ post.timestamp }}"
to:
data-time="{{ post.timestamp.timestamp() }}"
The problem is the disTime.js (that converts it to 'X time ago') expects UNIX timestamps (eg: '1432836038') instead of the actual value stored in the DB (eg: '2015-05-28 18:00:38.546025')
drew s
Python Development Techdegree Graduate 19,491 PointsThanks for the fix
Maurice Abney
Courses Plus Student 9,859 PointsMaurice Abney
Courses Plus Student 9,859 PointsThx for this fix man
nakalkucing
12,964 Pointsnakalkucing
12,964 PointsThanks! :)