[Fixed]-Django admin change plural model names

17👍

You need to specify a verbose_name_plural attribute in your model’s Meta subclass.

Check: https://docs.djangoproject.com/en/1.10/ref/models/options/#django.db.models.Options.verbose_name_plural for more info.

Leave a comment