diff --git a/nsupdate/main/models.py b/nsupdate/main/models.py index a4fd9db..1610b98 100644 --- a/nsupdate/main/models.py +++ b/nsupdate/main/models.py @@ -34,7 +34,8 @@ def domain_blacklist_validator(value): class Domain(models.Model): domain = models.CharField(max_length=256, unique=True) - nameserver_ip = models.IPAddressField(max_length=256, + nameserver_ip = models.IPAddressField( + max_length=256, help_text="An IP where the nsupdates for this domain will be sent to") nameserver_update_key = models.CharField(max_length=256) diff --git a/nsupdate/main/templates/main/home.html b/nsupdate/main/templates/main/home.html index a729e60..703187e 100644 --- a/nsupdate/main/templates/main/home.html +++ b/nsupdate/main/templates/main/home.html @@ -17,8 +17,7 @@ nsupdate.info - the Dynamic DNS service you waited for.

- - + {% endblock %}