I am prepending a html document, so when user post a comment, it shows up in real time. Now the problem is the way the date is looking, i want the date to show in a format like this 3s ago and not 09/08/2022 2:41 p.m., what is the best to achieve this
let _html = '
<div class="details_Comment">
<h4><b>{{c.user.username|title}}</b> <span>{% now "SHORT_DATETIME_FORMAT" %} ago</span></h4>
<p>' + _comment + '</p>
</div>\
' $(".comment-wrapper").prepend(_html)