There is a model called Mouse that is displayed as Mouses in the admin panel. Make the required corrections so that correct noun is displayed in admin panel.
Meta class
Renaming
Report a typo
Write a program in Python 3
from django.db import models
class Mouse(models.Model):
name = models.CharField(max_length=64)
class Meta:
app_label = 'mouse'
...
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.