parent
e01b3bf36b
commit
4cd133f993
2 changed files with 22 additions and 0 deletions
19
ccdb/utils/migrations/0003_pluralize_admin_entries.py
Normal file
19
ccdb/utils/migrations/0003_pluralize_admin_entries.py
Normal 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'},
|
||||||
|
),
|
||||||
|
]
|
|
@ -24,3 +24,6 @@ class AdminEntry(models.Model):
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return "%s %s" % (self.package, self.model)
|
return "%s %s" % (self.package, self.model)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name_plural = 'admin entries'
|
||||||
|
|
Loading…
Add table
Reference in a new issue