Overview

Django Model Utils 4.3, released on June 1, 2023, ensures Django 4.x compatibility and improves model mixins.

Main Features

The TimeStampedModel, StatusModel and SoftDeletableModel mixins are compatible with Django 4.x.

python
from django.db import models
from model_utils.models import TimeStampedModel

class Article(TimeStampedModel):
    title = models.CharField(max_length=200)
    # created and modified are added automatically

Sources