Django admin index modules is a Django app that gives you the ability to add widgets modules to the django admin dashboard (admin index)
Project description
Django admin index modules
Django admin index modules is a Django app that gives you the ability to add widgets modules to the django admin dashboard (admin index).
Quick start
- Installation:
pip install django-admin-index-modules
- comment "django.contrib.admin" and add "django_admin_index_modules.apps.CustomAdminConfig" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
#'django.contrib.admin',
'django_admin_index_modules.apps.CustomAdminConfig',
...
'django.contrib.staticfiles',
...
'django_admin_index_modules.apps.ModulesDashboardsConfig',
...
]
- In admin.py file of any other app create ypur widget module like this:
from django_admin_index_modules.admin import AdminModuleView
class VisitorsAdminModuleView(AdminModuleView):
template_name = 'visitors.html'
json_method_names = ['post']
http_method_names = ['get','post']
permissions = ['is_superuser']
css = []
js = []
def get(self, request, **kwargs):
context = {
'stats': "visitors"
}
return context
-
register your widget module using one of those methods:
-
- using register_module(AdminModuleView, position="middle_top") methods:
from django.contrib import admin
admin.site.register_module(VisitorsAdminModuleView, position="middle_top")
-
- using @register_module(position="middle_top") decorator:
from django_admin_index_modules.admin import register_module
@register_module(position="middle_top")
class VisitorsAdminModuleView(AdminModuleView):
...
-
- position keyword can take one of those values: top, middle_top, middle_bottom and bottom
-
create template file under "admin/modules/" than the name of the template file assigned to template_name propriety ex: "visitors.html"
-
Visit http://127.0.0.1:8000/admin/ to see your widget module.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for django_admin_index_modules-1.0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb1558cf9a6ec8fe9addfd5a55fb511fe13e76bc9c508dcf7a56db8efc6a7c13 |
|
MD5 | 83365d6dfbd26a6c1b91548401c586bc |
|
BLAKE2b-256 | fe694c7a2187689c6cb93317b7e4716486465fbe5f049cc4d2593341859fdc85 |
Close
Hashes for django_admin_index_modules-1.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26d191771ef56b2f7aae1527323f0f7dfc5b10ffd31d56edad54e7fbd6625245 |
|
MD5 | 768265907342cd2245e6d77f5603bfa3 |
|
BLAKE2b-256 | 6c57d1425f3178bcc2fb817cd4b9331a3baff7471eda1516d77a03ed2cfd4539 |