Renaming

Report a typo

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.

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'
...
___

Create a free account to access the full topic