Files
zhijie-ERP/sale/apps.py
T
2015-07-30 13:01:42 +08:00

12 lines
239 B
Python

# created at 15-5-23
# coding=utf-8
__author__ = 'zhugl'
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class MyAppConfig(AppConfig):
name = 'sale'
verbose_name = _("sale management")