Source code for events.apps
"""Configuration for the events package"""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
[docs]class EventsConfig(AppConfig):
"""AppConfig for the events package"""
name = "events"
verbose_name = _("Events")