django-orchestra/orchestra/contrib/orders/apps.py

16 lines
369 B
Python
Raw Normal View History

2015-05-04 14:19:58 +00:00
from django.apps import AppConfig
from orchestra.core import accounts
from orchestra.utils import database_ready
class OrdersConfig(AppConfig):
name = 'orchestra.contrib.orders'
verbose_name = 'Orders'
def ready(self):
from .models import Order
accounts.register(Order)
if database_ready():
from . import signals