Source code for shoop.front.apps.simple_search

# -*- coding: utf-8 -*-
# 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 shoop.apps import AppConfig


[docs]class SimpleSearchAppConfig(AppConfig): name = "shoop.front.apps.simple_search" verbose_name = "Shoop Frontend - Simple Search" label = "shoop_front.simple_search" provides = { "front_urls": [ "shoop.front.apps.simple_search.urls:urlpatterns" ], "front_template_helper_namespace": [ "shoop.front.apps.simple_search.template_helpers:TemplateHelpers" ] }
default_app_config = "shoop.front.apps.simple_search.SimpleSearchAppConfig"