15 lines
358 B
Python
15 lines
358 B
Python
from django.apps import AppConfig
|
|
|
|
from orchestra.core import accounts
|
|
from orchestra.utils.db import database_ready
|
|
|
|
|
|
class OrdersConfig(AppConfig):
|
|
name = 'orchestra.contrib.orders'
|
|
verbose_name = 'Orders'
|
|
|
|
def ready(self):
|
|
from .models import Order
|
|
accounts.register(Order, icon='basket.png')
|
|
from . import signals
|