Exemplo n.º 1
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from shopit.urls import get_urls

urlpatterns = get_urls('shop')
Exemplo n.º 2
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from shopit.urls import get_urls

urlpatterns = get_urls('brands')
Exemplo n.º 3
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from shopit.urls import get_urls

urlpatterns = get_urls('account')
Exemplo n.º 4
0
 def get_urls(self, page=None, language=None, **kwargs):
     return get_urls('manufacturers')
Exemplo n.º 5
0
 def get_urls(self, page=None, language=None, **kwargs):
     return get_urls('products')
Exemplo n.º 6
0
 def get_urls(self, page=None, language=None, **kwargs):
     return get_urls('categories')
Exemplo n.º 7
0
 def get_urls(self, page=None, language=None, **kwargs):
     return get_urls('brands')
Exemplo n.º 8
0
 def get_urls(self, page=None, language=None, **kwargs):
     return get_urls('account')
Exemplo n.º 9
0
 def get_urls(self, page=None, language=None, **kwargs):
     if app_settings.SINGLE_APPHOOK:  # pragma: no cover
         return ['shopit.urls']
     return get_urls('shop')
Exemplo n.º 10
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from shopit.urls import get_urls

urlpatterns = get_urls('categories')
Exemplo n.º 11
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from shopit.urls import get_urls

urlpatterns = get_urls('products')
Exemplo n.º 12
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from shopit.urls import get_urls

urlpatterns = get_urls('manufacturers')