10 lines
229 B
Python
10 lines
229 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class EventConfig(AppConfig):
|
|
name = 'event'
|
|
verbose_name = _("Évènement")
|
|
|
|
def ready(self):
|
|
from . import signals
|