Skip to main content

Django mixin to easily add urls to any ModelAdmin

Project description

pluggable django application that offers one single mixin class ExtraUrlMixin to easily add new url (and related buttons on the screen) to any ModelAdmin.

It provides two decorators link() and action().

  • link() is intended to be used for multiple records. It will produce a button in the change list view.

  • action() works on a single record. It will produce a button in the change form view.

Install

pip install admin-extra-urls

After installation add it to INSTALLED_APPS

INSTALLED_APPS = (
    ...
    'admin_extra_urls',
)

How to use it

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. The default behavior is:

  • with link() browser will be redirected to changelist_view

  • with action() browser will be redirected to change_view

More options

@link(label='Update', icon="icon-refresh icon-white", permission='model_change", order=-1)
def update_all(self, request):
        ....

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-1.3.1.tar.gz (15.1 kB view details)

Uploaded Source

File details

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

File metadata

File hashes

Hashes for admin-extra-urls-1.3.1.tar.gz
Algorithm Hash digest
SHA256 bc9a57a9d5fed67e047d0e8b1b8970b9c1509f2d25b082c89ef8bb9a72b0b089
MD5 db199767d2326555313d6dd2a23fac98
BLAKE2b-256 02ce22545d03bb06213fbaf702ce05d728d484ed511a4a615929066751376dcb

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