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:
+1
-1
@@ -65,4 +65,4 @@ class ContentCreator(models.Model):
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
||||
def __str__(self):
|
||||
return self.titles
|
||||
return self.title
|
||||
|
||||
Reference in New Issue
Block a user