|
@@ -24,13 +24,19 @@ class VPNConfiguration(CoinLdapSyncMixin, Configuration):
|
|
|
# validators=[ValidateBackendType(backend_name)])
|
|
|
activated = models.BooleanField(default=False)
|
|
|
login = models.CharField(max_length=50, unique=True, blank=True,
|
|
|
+ verbose_name="identifiant",
|
|
|
help_text="leave empty for automatic generation")
|
|
|
password = models.CharField(max_length=256, blank=True, null=True)
|
|
|
ipv4_endpoint = InetAddressField(validators=[validation.validate_v4],
|
|
|
- blank=True, null=True)
|
|
|
+ verbose_name="IPv4", blank=True, null=True,
|
|
|
+ help_text="Addresse IPv4 utilisée par "
|
|
|
+ "défaut sur le VPN")
|
|
|
ipv6_endpoint = InetAddressField(validators=[validation.validate_v6],
|
|
|
- blank=True, null=True)
|
|
|
- comment = models.CharField(blank=True, max_length=512)
|
|
|
+ verbose_name="IPv6", blank=True, null=True,
|
|
|
+ help_text="Addresse IPv6 utilisée par "
|
|
|
+ "défaut sur le VPN")
|
|
|
+ comment = models.CharField(blank=True, max_length=512,
|
|
|
+ verbose_name="commentaire")
|
|
|
|
|
|
objects = NetManager()
|
|
|
|