Hi,
I'm using django currently and outputting the date in seconds from the unix epoch. How do I use jquery time ago with unix epoch?
I see this example: January 10, 2015
<abbr class="timeago" title="2015-01-10T15:00:00Z">January 10, 2015</abbr>
but can i do something like:
<abbr class="timeago" title="2015-01-10T15:00:00Z">{{UNIX_EPOCH_IN_SECONDS}}</abbr>
Thanks!