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.
url() decorator will create a new view for the ModelAdmin.
button() shortcut for url(button={...}).
link() to add button that point to external urls.
Install
pip install django-admin-extra-urls
After installation add it to INSTALLED_APPS
INSTALLED_APPS = (
...
'admin_extra_urls',
)
How to use it
from admin_extra_urls.api import url, button, link, href
class MyModelModelAdmin(extras.ExtraUrlMixin, admin.ModelAdmin):
@link(label='Search On Google', 'http://www.google.com?q={target}') # /admin/myapp/mymodel/update_all/
def search_on_google(self, button):
# this is called by the template engine just before rendering the button
# `context` is the Context instance in the template
if 'original' in button.context:
obj = button.context['original']
return {'target': obj.name}
else:
button.visible = False
@link()
def search_on_bing(self, button):
return 'http://www.bing.com?q=target'
@button() # /admin/myapp/mymodel/update_all/
def consolidate(self, request):
...
...
@extras.button() # /admin/myapp/mymodel/update/10/
def update(self, request, pk):
# if we use `pk` in the args, the button will be in change_form
obj = self.get_object(request, pk)
...
@button(urls=[r'^aaa/(?P<pk>.*)/(?P<state>.*)/$',
r'^bbb/(?P<pk>.*)/$'])
def revert(self, request, pk, state=None):
obj = self.get_object(request, pk)
...
@button(label='Truncate', permission=lambda request, obj: request.user.is_superuser)
def truncate(self, request):
if request.method == 'POST':
self.model.objects._truncate()
else:
return extras._confirm_action(self, request, self.truncate,
'Continuing will erase the entire content of the table.',
'Successfully executed', )
If the return value from a button decorated method is a HttpResponse, that will be used. Otherwise if the method contains the pk argument user will be redirected to the ‘update’ view, otherwise and the browser will be redirected to the admin’s list view
Integration with other libraries
django-import-export
@admin.register(Rule)
class RuleAdmin(ExtraUrlMixin, ImportExportMixin, BaseModelAdmin):
@button(label='Export')
def _export(self, request):
if '_changelist_filters' in request.GET:
real_query = QueryDict(request.GET.get('_changelist_filters'))
request.GET = real_query
return self.export_action(request)
@button(label='Import')
def _import(self, request):
return self.import_action(request)
Running project tests locally
Install the dev dependencies with pip install -e '.[dev]' and then run tox.
Links
Stable |
||||
Development |
||||
Project home page: |
||||
Issue tracker: |
https://github.com/saxix/django-admin-extra-urls/issues?sort |
|||
Download: |
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
Built Distribution
File details
Details for the file django-admin-extra-urls-4.0.0.tar.gz
.
File metadata
- Download URL: django-admin-extra-urls-4.0.0.tar.gz
- Upload date:
- Size: 103.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cf53d95385a1a109601d39fcd6f53bd943c086c1e27b7aa12e389ddf522e8f7 |
|
MD5 | 0b9d61bb1c23f6dcfe7687f470dcd2ec |
|
BLAKE2b-256 | 2aa16514ef95aea8065d50e5cb98b7fbe8ef96f6c6ce7a0d8d8f7d1cbc286472 |
File details
Details for the file django_admin_extra_urls-4.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_admin_extra_urls-4.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6722b175060011fac0dfbb6c4cd60f0a5301c737b9d034d1ed0ae02b7f4bbb1c |
|
MD5 | e81083c6b1afe1ac147f78801a07061f |
|
BLAKE2b-256 | 2337c51f2f90a0726a674ab34b112f0865656bf663c704cd432ea39bf40a6a31 |