From f7f45160d6e2c2a4de0398764f7e4354b2c0d00a Mon Sep 17 00:00:00 2001 From: Calum Andrew Morrell Date: Mon, 17 Feb 2025 00:15:24 +0000 Subject: [PATCH] Added a fixme to articles model. --- articles/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/articles/models.py b/articles/models.py index e044ff6..618c3b2 100644 --- a/articles/models.py +++ b/articles/models.py @@ -36,6 +36,7 @@ class Article(models.Model): introduction = models.TextField(blank=True) body = MarkdownxField() summary = MarkdownxField(blank=True) + # FIXME: tags with spaces do not match any articles when clicked on. tags = TagField(force_lowercase=True, get_absolute_url=lambda tag: reverse_lazy('articles:list_tag', kwargs={'tag': tag.slug})) created = models.DateTimeField(auto_now_add=True)