Update help text (most the way there)

This commit is contained in:
zandercymatics 2024-04-12 15:34:01 -06:00
parent 64d0ec3f93
commit 30eed60413
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
5 changed files with 18 additions and 50 deletions

View file

@ -21,14 +21,13 @@ class Host(TimeStampedModel):
blank=False,
default=None, # prevent saving without a value
unique=False,
help_text="Fully qualified domain name",
)
domain = models.ForeignKey(
"registrar.Domain",
on_delete=models.PROTECT,
related_name="host", # access this Host via the Domain as `domain.host`
help_text="Domain to which this host belongs",
help_text="Domain associated with this hosts",
)
def __str__(self):