maiksprenger / djangocms-oscar

Bridges the gap between django CMS and the Oscar ecommerce framework.
MIT License
38 stars 13 forks source link

Example of categories integration as menu items. #3

Closed vovanbo closed 10 years ago

vovanbo commented 10 years ago

If needed restriction of categories depth can be used something like this (in menu.py):

for node in tree:
    if node.get_depth() > 1:
        continue
maiksprenger commented 10 years ago

That's lovely, thanks.