Changes between Initial Version and Version 1 of Ticket #13744


Ignore:
Timestamp:
Jun 11, 2010, 4:50:50 PM (14 years ago)
Author:
Alex Gaynor
Comment:

Please use the preview button, and consult WikiFormatting before posting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13744 – Description

    initial v1  
     1{{{
    12from django.forms.fields import URLField
    23from django.core.validators import URLValidator
     
    1516        super(MyURLField, self).__init__(max_length, min_length, *args, **kwargs)
    1617        self.validators.append(MyURLValidator(verify_exists=verify_exists, validator_user_agent=validator_user_agent))
     18}}}
Back to Top