I am creating models, where i get bit confusion about save() has another save method with super keyword, why two save() methods, appreciate for explination.
    from django.db import models
    class Blog(models.Model):
        name = models.CharField(max_length=100)
        tagline = models.TextField()
        def save(self, *args, **kwargs):
            do_something()
            super().save(*args, **kwargs)  # Call the "real" save() method.
            do_something_else()
 
    