Browse Source

Set verbose_name and so on for VPN

Baptiste Jonglez 10 years ago
parent
commit
ebd287fadd
1 changed files with 9 additions and 3 deletions
  1. 9 3
      coin/vpn/models.py

+ 9 - 3
coin/vpn/models.py

@@ -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()