Skip to content

Commit

Permalink
display blacklisted report number in admin panel
Browse files Browse the repository at this point in the history
  • Loading branch information
djbrown committed Feb 5, 2023
1 parent bc4961f commit 10cba35
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/players/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,6 @@ def __str__(self):
class ReportsBlacklist(models.Model):
report_number = models.IntegerField(unique=True)
note = models.TextField(blank=True, null=True)

def __str__(self):
return f'{self.report_number}'

0 comments on commit 10cba35

Please sign in to comment.