Source code for shoop.front.apps.personal_order_history

# This file is part of Shoop.
#
# Copyright (c) 2012-2016, Shoop Ltd. All rights reserved.
#
# This source code is licensed under the AGPLv3 license found in the
# LICENSE file in the root directory of this source tree.
from __future__ import unicode_literals

from django.utils.translation import ugettext_lazy as _

import shoop.apps


[docs]class AppConfig(shoop.apps.AppConfig): name = __name__ verbose_name = _('Shoop Frontend - Personal Order History') label = 'shoop_front.personal_order_history' provides = { 'front_urls': [__name__ + '.urls:urlpatterns'], }
default_app_config = __name__ + '.AppConfig'