Skip to main content

Django mixin to easily add urls to any ModelAdmin

Project description

this plugable django application that offer one single Mixin ExtraUrlMixin to easily add new url (and related buttons on the screen) to any ModelAdmin.

Install:

pip install admin-extra-urls

After installation add it to INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'admin_extra_urls',
)

Example:

class MyModelModelAdmin(ExtraUrlMixin, admin.ModelAdmin):

    @link() # /admin/myapp/mymodel/update_all/
    def update_all(self, request):
        ...
        ...


    @action() # /admin/myapp/mymodel/update/10/
    def update(self, request, pk):
        ...
        ...

You don't need to return a HttpResponse, by default:

- with `@link()` browser will be redirected to `changelist view`
- with `@action()` browser will be redirected to `change view `

Note

The package contains a UploadMixin to manage custom file uploads (simply set upload_handler to a function. This can be checked to see how to create wizard with an intermediate form.

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

admin-extra-urls-0.3.tar.gz (11.0 kB view details)

Uploaded Source

File details

Details for the file admin-extra-urls-0.3.tar.gz.

File metadata

File hashes

Hashes for admin-extra-urls-0.3.tar.gz
Algorithm Hash digest
SHA256 3027755718bb711ab2249661f84aa302c2e4a6e65fdccda4b5ea7dbf02f96fa6
MD5 612f02f7b20593f9d9f96dd3f95b0e18
BLAKE2b-256 404b1e78da9e0faef00a44a802d1125c90143b3bfe6d1246e527ac06e6dfd45c

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