i have this code:
{% for review in reviews %}
   <div>
     {{ review.content }}
       by {{ review.username }}
       - timeDifference("{{ review.date_submitted }}")
   </div>
{% endfor %}
on the 5th line is a js function timeDifference that will return time difference in text, I want to insert js function there, how do I do that?