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