In your settings.py
INSTALLED_APPS = [
'rest_framework',
'hvad',
'djsuperadmin'
# Django modules
...
]
context_processors = [
...
'djsuperadmin.context_processors.djsuperadmin'
...
]
In your project/urls.py
urlpatterns = [
...
url(r'^djsuperadmin/', include('djsuperadmin.urls'))
]
In your template.html
{% load djsuperadmin %}
If you want use Quill Editor
<body>
<div>
{% content 'customcontent_id' %}
</div>
</body>
If you want a raw content (no html needed)
<body>
<p>
{% content_raw 'customcontent_id' %}
</p>
</body>
<footer>
{{djsuperadminjs}}
</footer>