Skip to content
Snippets Groups Projects
Commit 24e83c24 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Add verbose_name_plural to models

- `Category`,
- `FundingCategory`,
- `MusicFocus`
parent c6fc0dd4
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@ class Category(models.Model):
class Meta:
ordering = ("name",)
verbose_name_plural = "Categories"
def __str__(self):
return self.name
......@@ -94,6 +95,7 @@ class MusicFocus(models.Model):
class Meta:
ordering = ("name",)
verbose_name_plural = "Music Focus"
def __str__(self):
return self.name
......@@ -107,6 +109,7 @@ class FundingCategory(models.Model):
class Meta:
ordering = ("name",)
verbose_name_plural = "Funding Categories"
def __str__(self):
return self.name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment