8 lines
182 B
Python
8 lines
182 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class ConferenceConfig(AppConfig):
|
||
|
name = "symposion.conference"
|
||
|
label = "symposion_conference"
|
||
|
verbose_name = "Symposion Conference"
|