Skip to main content

To automate the Django Admin displaying.

Project description

Example

from daa.admin import AutoModelAdmin

from django.db.models import Q

from django.utils.html import format_html

class OwnershipModelAdmin(AutoModelAdmin):

def get_queryset_Q(self, request):

return Q(owner=request.user)

def get_form_field_queryset_Q(self, db_field, request):
if db_field.name==’account’:

return Q(onwer=request.user)

def get_form_fields_exclude(self,request,obj=None):

return () if obj else (‘owner’,)

def action(self,obj):

return format_html(‘<a href=”url” class=”button”>Load</a>’)

extra=(‘action’,)

Install

pip install django-admin-auto

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-admin-auto-0.1.1.tar.gz (2.3 kB view hashes)

Uploaded Source

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