├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── conftest.py ├── navutils ├── __init__.py ├── __version__.py ├── apps.py ├── breadcrumbs.py ├── context_processors.py ├── menu.py ├── mixins.py ├── settings.py ├── templates │ └── navutils │ │ ├── breadcrumbs.html │ │ ├── crumb.html │ │ ├── menu.html │ │ └── node.html ├── templatetags │ ├── __init__.py │ └── navutils_tags.py └── views.py ├── requirements ├── test.txt └── travis.txt ├── setup.py ├── tests ├── __init__.py ├── test_app │ ├── __init__.py │ ├── models.py │ ├── templates │ │ └── test_app │ │ │ ├── base.html │ │ │ └── test_node.html │ ├── urls.py │ └── views.py ├── test_breadcrumbs.py ├── test_menu.py ├── test_mixins.py └── test_render_nested.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/conftest.py -------------------------------------------------------------------------------- /navutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/__init__.py -------------------------------------------------------------------------------- /navutils/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.7" 2 | -------------------------------------------------------------------------------- /navutils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/apps.py -------------------------------------------------------------------------------- /navutils/breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/breadcrumbs.py -------------------------------------------------------------------------------- /navutils/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/context_processors.py -------------------------------------------------------------------------------- /navutils/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/menu.py -------------------------------------------------------------------------------- /navutils/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/mixins.py -------------------------------------------------------------------------------- /navutils/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/settings.py -------------------------------------------------------------------------------- /navutils/templates/navutils/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/templates/navutils/breadcrumbs.html -------------------------------------------------------------------------------- /navutils/templates/navutils/crumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/templates/navutils/crumb.html -------------------------------------------------------------------------------- /navutils/templates/navutils/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/templates/navutils/menu.html -------------------------------------------------------------------------------- /navutils/templates/navutils/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/templates/navutils/node.html -------------------------------------------------------------------------------- /navutils/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navutils/templatetags/navutils_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/templatetags/navutils_tags.py -------------------------------------------------------------------------------- /navutils/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/navutils/views.py -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | pytest-django 2 | -------------------------------------------------------------------------------- /requirements/travis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/requirements/travis.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_app/models.py -------------------------------------------------------------------------------- /tests/test_app/templates/test_app/base.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/templates/test_app/test_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_app/templates/test_app/test_node.html -------------------------------------------------------------------------------- /tests/test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_app/urls.py -------------------------------------------------------------------------------- /tests/test_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_app/views.py -------------------------------------------------------------------------------- /tests/test_breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_breadcrumbs.py -------------------------------------------------------------------------------- /tests/test_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_menu.py -------------------------------------------------------------------------------- /tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_mixins.py -------------------------------------------------------------------------------- /tests/test_render_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tests/test_render_nested.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/django-navutils/HEAD/tox.ini --------------------------------------------------------------------------------