Skip to main content

Allows to add sections to django admin which are not tied to any model. They can render some template for example.

Project description

Django NonModel Admin

Allows to add sections to django admin which are not tied to any model. They can render some template for example.

Usage

In admins.py:

from django_nonmodel_admin import NonModelAdmin, register

@register()
class DashboardAdmin(NonModelAdmin):
    name = 'dashboard'
    verbose_name = 'My dashboard'
    change_list_template = "my_app/dashboard.html"

register decorator can be used with regular ModelAdmin’s too.

Template example:

{% extends "admin/change_list.html" %}
{% block content %}
<div id="content-main">
,,, your stuff
</div>
{% endblock %}

Extra context can be defined via overwriting get_extra_context method of NonModelAdmin.

It can be extended like regular ModelAdmin, for example you can define own get_urls method.

You DON’T have to add anything to INSTALLED_APPS.

  • Free software: MIT license

History

0.1.0 (2021-09-07)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_nonmodel_admin-0.1.1.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file django_nonmodel_admin-0.1.1.tar.gz.

File metadata

  • Download URL: django_nonmodel_admin-0.1.1.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for django_nonmodel_admin-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b0e47f9e8611ff7760d5b1c7f6390cb9d09fa95bbe018b2bfd7ad1b328f7b6f0
MD5 43f4ec52fb5b8b88ebc1f7f648f2219b
BLAKE2b-256 37360aa7030285ed2a593ea421d26ba157138a66a2f1022cc406283a12ad198e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page