From 64faea914b42928cafa2bffa99d9ab5908e164a1 Mon Sep 17 00:00:00 2001 From: muhammad-ammar Date: Thu, 21 Jan 2021 18:46:36 +0500 Subject: [PATCH] update model plural names --- taxonomy/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/taxonomy/models.py b/taxonomy/models.py index 6eb4e47d..46a76aca 100644 --- a/taxonomy/models.py +++ b/taxonomy/models.py @@ -112,6 +112,7 @@ class Meta: Meta configuration for CourseSkills model. """ + verbose_name_plural = 'CourseSkills' ordering = ('created', ) app_label = 'taxonomy' @@ -242,6 +243,7 @@ class Meta: Metadata for the JobSkills model. """ + verbose_name_plural = 'JobSkills' ordering = ('created',) app_label = 'taxonomy' @@ -312,6 +314,7 @@ class Meta: Metadata for the JobPostings model. """ + verbose_name_plural = 'JobPostings' ordering = ('created',) app_label = 'taxonomy'