mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-29 11:20:30 +00:00
10 lines
213 B
Python
10 lines
213 B
Python
|
|
"""Django application configuration."""
|
||
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class Select2AppConfig(AppConfig):
|
||
|
|
"""Django application configuration."""
|
||
|
|
|
||
|
|
name = 'django_select2'
|
||
|
|
verbose_name = 'Select2'
|