12 lines
279 B
Python
12 lines
279 B
Python
"""
|
|
References app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ReferencesConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.references'
|
|
verbose_name = 'Reference Section'
|
|
verbose_name_plural = 'Reference Section'
|