d95d66dac8
We're lock-step with symposion, and upstream is dead. Vendor it.
8 lines
241 B
Python
8 lines
241 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class ConferenceConfig(AppConfig):
|
|
name = "symposion.conference"
|
|
label = "symposion_conference"
|
|
verbose_name = _("Symposion Conference")
|