projects
/
tickle
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1abbfc3
)
Add verbose name to Pitch model
author
David Kerkeslager
<kerkeslager@gmail.com>
Fri, 26 Feb 2021 06:08:21 +0000
(
01:08
-0500)
committer
David Kerkeslager
<kerkeslager@gmail.com>
Fri, 26 Feb 2021 06:08:21 +0000
(
01:08
-0500)
tickle/models.py
patch
|
blob
|
history
diff --git
a/tickle/models.py
b/tickle/models.py
index
eb661d1
..
3b2deb8
100644
(file)
--- a/
tickle/models.py
+++ b/
tickle/models.py
@@
-116,6
+116,7
@@
class Pitch(models.Model):
class Meta:
ordering = ('order',)
+ verbose_name_plural = 'Pitches'
def __str__(self):
return 'P{} ({})'.format(self.order, self.difficulty)