On Feb 5, 10:17 am, Adam Radestock wrote:
> I'm trying to get a URLField to NOT check the URL is valid on form
> submission, but the damn thing won't listen!
> I have the following model defined in my models.py:
>
> class SubversionRepository(models.Model):
> name = models.CharField(max
It might be checking if the URL is in a correct format and not
checking if the URL exists.
Make sure the URL is in a valid format.
On Feb 5, 10:17 am, Adam Radestock wrote:
> I'm trying to get a URLField to NOT check the URL is valid on form
> submission, but the damn thing won't listen!
> I
I'm trying to get a URLField to NOT check the URL is valid on form
submission, but the damn thing won't listen!
I have the following model defined in my models.py:
class SubversionRepository(models.Model):
name = models.CharField(max_length=200)
url = models.URLField(verify_exist
3 matches
Mail list logo