I need to change the newss to another name how i can do this ؟
Like this:
class News(models.Model): ...... class Meta: verbose_name_plural = "News"
Then it will display "News" instead of "Newss"
You must specify custom verbose_name and verbose_name_plural in your Meta class for News model.