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
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
admin-extra-urls-0.3.tar.gz
(11.0 kB
view details)
File details
Details for the file admin-extra-urls-0.3.tar.gz
.
File metadata
- Download URL: admin-extra-urls-0.3.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3027755718bb711ab2249661f84aa302c2e4a6e65fdccda4b5ea7dbf02f96fa6 |
|
MD5 | 612f02f7b20593f9d9f96dd3f95b0e18 |
|
BLAKE2b-256 | 404b1e78da9e0faef00a44a802d1125c90143b3bfe6d1246e527ac06e6dfd45c |