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 `

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

Uploaded Source

File details

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

File metadata

File hashes

Hashes for admin-extra-urls-0.6.1.tar.gz
Algorithm Hash digest
SHA256 bb385b90027533d2813dc90b029d87c11806adb51fb85bc49f5473b6aa0c6cb5
MD5 3ce38b506a1f4791f58cae1f5f12f4f2
BLAKE2b-256 51a667157fbeddb37cec4879fd92abeeec454c9a58155fdf7290bf47777bafdb

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