BUG: Pluralize AdminEntry (#47)

Fixes #38
This commit is contained in:
Matthew Ryan Dillon 2018-02-05 04:57:30 -07:00 committed by GitHub
parent e01b3bf36b
commit 4cd133f993
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.9 on 2018-02-05 11:50
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('utils', '0002_initial_admin_enties'),
]
operations = [
migrations.AlterModelOptions(
name='adminentry',
options={'verbose_name_plural': 'admin entries'},
),
]

View file

@ -24,3 +24,6 @@ class AdminEntry(models.Model):
def __str__(self):
return "%s %s" % (self.package, self.model)
class Meta:
verbose_name_plural = 'admin entries'