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

6 lines
168 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
from django.conf import settings
2014-05-27 15:55:09 +00:00
from django.utils.translation import ugettext_lazy as _
2014-05-08 16:59:35 +00:00
2014-05-27 15:55:09 +00:00
ORDERS_PRICE_MODEL = getattr(settings, 'ORDERS_PRICE_MODEL', 'prices.Price')