From 6eda6226133fa1c7b2a397b1007bee11dc2d3379 Mon Sep 17 00:00:00 2001 From: Jordan Robinson Date: Sat, 20 Sep 2025 22:33:34 +0100 Subject: [PATCH] add help text for tags --- main/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/models.py b/main/models.py index a4743e288a33f09f78bc57bff05cef5c81097bc8..feb4d157914fccfad07989c7afa8885cce3993cd 100644 --- a/main/models.py +++ b/main/models.py @@ -264,7 +264,7 @@ class Post(models.Model): help_text="Leave blank to keep as draft/unpublished. Use a future date for auto-posting.", ) broadcasted_at = models.DateTimeField(blank=True, null=True, default=None) - tags = models.CharField(max_length=300, blank=True, null=True, default=None) + tags = models.CharField(max_length=300, blank=True, null=True, default=None, help_text="Enter comma-separated tags (e.g., django, python, blog).") class Meta: ordering = ["-published_at", "-created_at"]