Skip to content

bnznamco/djsuperadmin

Repository files navigation

djSuperAdmin

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>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published