Corrige ContentCreator.__str__ (self.titles -> self.title)

El campo se llama `title`; `self.titles` no existía y provocaba
AttributeError al representar el modelo (p. ej. en el admin de Django).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-12 19:16:22 +00:00
parent 585285640d
commit 96ab91a82b
+1 -1
View File
@@ -65,4 +65,4 @@ class ContentCreator(models.Model):
updated_at = models.DateTimeField(auto_now=True)
def __str__(self):
return self.titles
return self.title