[Answer]-Django save method overwritten and type object 'cursos' has no attribute 'object'

1👍

The model manager is called via objects, not object:

curso_nombre = str(cursos.objects.filter(id=self.id).values('nombre'))
                          # HERE^
👤alecxe

Leave a comment