8 lines
177 B
Python
8 lines
177 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class BookingConfig(AppConfig):
|
|
name = 'booking'
|
|
verbose_name = _('Booking')
|