|
@@ -77,11 +77,11 @@ class ISPInfo(SingleInstanceMixin, models.Model):
|
|
|
|
|
|
# field outside of db-ffdn format:
|
|
# field outside of db-ffdn format:
|
|
administrative_email = models.EmailField(
|
|
administrative_email = models.EmailField(
|
|
- max_length=254, blank=True, verbose_name="Contact administratif",
|
|
|
|
|
|
+ max_length=254, blank=True, verbose_name="contact administratif",
|
|
help_text='Adresse email pour les contacts administratifs (ex: bureau)')
|
|
help_text='Adresse email pour les contacts administratifs (ex: bureau)')
|
|
|
|
|
|
support_email = models.EmailField(
|
|
support_email = models.EmailField(
|
|
- max_length=254, blank=True, verbose_name="Contact de support",
|
|
|
|
|
|
+ max_length=254, blank=True, verbose_name="contact de support",
|
|
help_text="Adresse email pour les demandes de support technique")
|
|
help_text="Adresse email pour les demandes de support technique")
|
|
|
|
|
|
@property
|
|
@property
|
|
@@ -206,14 +206,14 @@ class BankInfo(models.Model):
|
|
isp = models.OneToOneField(ISPInfo)
|
|
isp = models.OneToOneField(ISPInfo)
|
|
iban = IBANField('IBAN')
|
|
iban = IBANField('IBAN')
|
|
bic = BICField('BIC', blank=True, null=True)
|
|
bic = BICField('BIC', blank=True, null=True)
|
|
- bank_name = models.CharField('Établissement bancaire',
|
|
|
|
|
|
+ bank_name = models.CharField('établissement bancaire',
|
|
max_length=100, blank=True, null=True)
|
|
max_length=100, blank=True, null=True)
|
|
- check_order = models.CharField('Ordre',
|
|
|
|
|
|
+ check_order = models.CharField('ordre',
|
|
max_length=100, blank=False, null=False,
|
|
max_length=100, blank=False, null=False,
|
|
help_text='Ordre devant figurer sur un \
|
|
help_text='Ordre devant figurer sur un \
|
|
chèque bancaire à destination de\
|
|
chèque bancaire à destination de\
|
|
l\'association')
|
|
l\'association')
|
|
|
|
|
|
class Meta:
|
|
class Meta:
|
|
- verbose_name = 'Coordonnées bancaires'
|
|
|
|
|
|
+ verbose_name = 'coordonnées bancaires'
|
|
verbose_name_plural = verbose_name
|
|
verbose_name_plural = verbose_name
|