Installation
Start by install django-glue using pip.
Add django-glue to your installed apps in your project settings. We recommend adding it below the other installed applications.
Add django-glue middleware to your project settings.
Add django-glue context processor to your project settings.
TEMPLATES = [
{
...
'OPTIONS': {
'context_processors': [
...
'django_glue.context_processors.glue',
],
},
...
},
]
Add the following to the bottom of your main urls
Add the required template tags to your base template