{ "info": { "author": "Richard Stromer", "author_email": "noxan@byteweaver.org", "bugtrack_url": null, "classifiers": [], "description": "# django-bootstrapnavtags\n\nNavigation templatetags for django with twitter bootstrap.\n\n## Installation\n\nIf you want to install the latest stable release from PyPi:\n\n $ pip install django-bootstrap-navtags\n\nIf you want to install the latest development version from GitHub:\n\n $ pip install -e git://github.com/noxan/django-bootstrap-navtags#egg=django-bootstrapnavtags\n\nAdd `bootstrapnavtags` to your `INSTALLED_APPS`:\n\n INSTALLED_APPS = (\n ...\n 'bootstrapnavtags',\n ...\n )\n\nEnable the `django.core.context_processors.request` by adding it to your settings.\n\n TEMPLATE_CONTEXT_PROCESSORS = (\n 'django.contrib.auth.context_processors.auth',\n 'django.core.context_processors.debug',\n 'django.core.context_processors.i18n',\n 'django.core.context_processors.media',\n 'django.core.context_processors.static',\n 'django.core.context_processors.tz',\n 'django.contrib.messages.context_processors.messages',\n 'django.core.context_processors.request',\n )\n\nDefault settings value of django for context processors can be found at: https://docs.djangoproject.com/en/dev/ref/settings/#template-context-processors\n\n## How to use\n\nFirst make sure to load the templatetag via `{% load bootstrapnavtags %}` in your template.\n\nThen insert navigation entries into your template as it pleases you:\n\n