Meta cleanup
This commit is contained in:
parent
e7c384ed5f
commit
1edb557f91
4 changed files with 54 additions and 2 deletions
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('collections_ccdb', '0003_collections_ordering'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='adfgpermit',
|
||||
options={'ordering': ['sort_order'], 'verbose_name': 'ADFG Permit'},
|
||||
),
|
||||
]
|
|
@ -55,6 +55,7 @@ class ADFGPermit(models.Model):
|
|||
|
||||
class Meta:
|
||||
ordering = ['sort_order']
|
||||
verbose_name = 'ADFG Permit'
|
||||
|
||||
|
||||
class Collection(models.Model):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue