Django 1.9 URLField Removing The Necessary Http:// Prefix
I've seen a bunch of questions about this, but havent found an answer yet. This is my models: class UserProfile(models.Model): user = models.OneToOneField(User) . .
Solution 1:
This validation isn't being done by Django, but by your browser itself. You can disable that by putting novalidate in the surrounding <form> element.
Post a Comment for "Django 1.9 URLField Removing The Necessary Http:// Prefix"