Ticket #10204: spanish_nie.patch
File spanish_nie.patch, 831 bytes (added by , 16 years ago) |
---|
-
django/contrib/localflavor/es/forms.py
75 75 self.nif_control = 'TRWAGMYFPDXBNJZSQVHLCKE' 76 76 self.cif_control = 'JABCDEFGHI' 77 77 self.cif_types = 'ABCDEFGHKLMNPQS' 78 self.nie_types = 'XT '78 self.nie_types = 'XTYZ' 79 79 id_card_re = re.compile(r'^([%s]?)[ -]?(\d+)[ -]?([%s]?)$' % (self.cif_types + self.nie_types, self.nif_control + self.cif_control), re.IGNORECASE) 80 80 super(ESIdentityCardNumberField, self).__init__(id_card_re, max_length=None, min_length=None, 81 81 error_message=self.default_error_messages['invalid%s' % (self.only_nif and '_only_nif' or '')],