10 lines
329 B
Python
Executable File
10 lines
329 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
# django-changelist-inline v1.0.2 | (c) 2021-present Tomek Wójcik | MIT License
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class DjangoChangelistInlineConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'django_changelist_inline'
|
|
verbose_name = 'Django Changelist Inline'
|