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 trial

Python Build a Social Network with Flask Broadcasting Stream Templates

Taylor Laine
Taylor Laine
9,629 Points

Change it to real post time

Really want to make it say the real time. Why is it saying 45 years?

2 Answers

Joao Pescada
Joao Pescada
19,485 Points

Did 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')