models.py 302 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 from django.db import models class Activos(models.Model): class Meta: abstract = True es_activo = models.BooleanField(default=True) def activar_registro(self): if not self.es_activo: self.es_activo = True self.save(update_fields=('es_activo',))