I am listing some lists from a view in a django template. In this template, it will extract lines from these lists in sequence for loops, and then print each of these lines. Some of these lines may contain URLs, for example, Right now, when these lines print, they just print like text. Is there an easy way to tell the django template to automatically set these URLs and show them as links instead of plain text?This is some string. http://google.com
Thank!
source
share