How can I use an external URL in a django template? For example, I have a CharField in the database/model and I want to display it on a template page as an external link. However, when I do something like the following and click the link:
<a href="{{items.website|urlencode}}">{{items.website}}</a>
django attempts to access the link as follows:
instead of:
Thanks.