Browse Source

Add settings to use custom country and custom postal_code length

Josué Tille 6 years ago
parent
commit
b563f92bcc
2 changed files with 9 additions and 3 deletions
  1. 3 3
      coin/members/models.py
  2. 6 0
      coin/settings_base.py

+ 3 - 3
coin/members/models.py

@@ -99,14 +99,14 @@ class Member(CoinLdapSyncMixin, AbstractUser):
     # support more countries and address types)
     address = models.TextField(
         verbose_name='adresse postale', blank=True, null=True)
-    postal_code = models.CharField(max_length=5, blank=True, null=True,
-                                   validators=[RegexValidator(regex=r'^\d{5}$',
+    postal_code = models.CharField(max_length=settings.POSTCODE_LENGTH, blank=True, null=True,
+                                   validators=[RegexValidator(regex=r'^\d{' + str(settings.POSTCODE_LENGTH) + r'}$',
                                                               message='Code postal non valide.')],
                                    verbose_name='code postal')
     city = models.CharField(max_length=200, blank=True, null=True,
                             verbose_name='commune')
     country = models.CharField(max_length=200, blank=True, null=True,
-                               default='France',
+                               default=settings.DEFAULT_COUNTRY,
                                verbose_name='pays')
     resign_date = models.DateField(null=True, blank=True,
                                    verbose_name="date de départ de "

+ 6 - 0
coin/settings_base.py

@@ -57,6 +57,12 @@ USE_L10N = True
 # If you set this to False, Django will not use timezone-aware datetimes.
 USE_TZ = True
 
+# Postcode length
+POSTCODE_LENGTH = 5
+
+# Default country
+DEFAULT_COUNTRY = "France"
+
 # Default URL for login and logout
 LOGIN_URL = '/members/login'
 LOGIN_REDIRECT_URL = '/members'