I'm just started using Django so my quetion might be stupid :)
I have an URL to a different site in my model(TextField, "othersite.com"). I'm trying to display it in the template like that <a href="{{ article.url }}" >
But tricky Django gives me <a href="http://mysite.com/articles/othersite.com" >
- What do I do to get
<a href="othersite.com" >? - Sorry for my language, if it has any mistakes :)