All Projects → saxix → django-admin-extra-urls

saxix / django-admin-extra-urls

Licence: other
Single mixin class to easily add buttons on any Django ModelAdmin related page

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
Makefile
30231 projects

Projects that are alternatives of or similar to django-admin-extra-urls

Awesome Django
Repository mirror of GitLab: https://gitlab.com/rosarior/awesome-django This repository is not monitored for issues, use original at GitLab.
Stars: ✭ 8,527 (+32696.15%)
Mutual labels:  django-admin
Django Material Admin
Material design for django administration
Stars: ✭ 163 (+526.92%)
Mutual labels:  django-admin
Repoll
Redis管理平台Repoll,现已开源,基于redis3.x,支持单机、哨兵以及集群模式
Stars: ✭ 196 (+653.85%)
Mutual labels:  django-admin
Django Fluent Pages
A flexible, scalable CMS with custom node types, and flexible block content.
Stars: ✭ 103 (+296.15%)
Mutual labels:  django-admin
Django Fluent Contents
A widget engine to display various content on Django pages
Stars: ✭ 149 (+473.08%)
Mutual labels:  django-admin
Django Inline Actions
django-inline-actions adds actions to each row of the ModelAdmin or InlineModelAdmin.
Stars: ✭ 170 (+553.85%)
Mutual labels:  django-admin
Awesome Django Cn
Django 优秀资源大全。
Stars: ✭ 1,153 (+4334.62%)
Mutual labels:  django-admin
Django Flat Responsive
📱 An extension for Django admin that makes interface mobile-friendly. Merged into Django 2.0
Stars: ✭ 249 (+857.69%)
Mutual labels:  django-admin
Django Polymorphic Tree
Polymorphic MPTT tree support for models
Stars: ✭ 152 (+484.62%)
Mutual labels:  django-admin
Django Suit
Modern theme for Django admin interface
Stars: ✭ 2,136 (+8115.38%)
Mutual labels:  django-admin
Django Crud Ajax Login Register Fileupload
Django Crud, Django Crud Application, Django ajax CRUD,Django Boilerplate application, Django Register, Django Login,Django fileupload, CRUD, Bootstrap, AJAX, sample App
Stars: ✭ 118 (+353.85%)
Mutual labels:  django-admin
Django Business Logic
Visual DSL framework for django
Stars: ✭ 134 (+415.38%)
Mutual labels:  django-admin
Django Antd Tyadmin
类似 xadmin 的基于Model 快速生成前后台管理增删改查,筛选,搜索的后台管理自动化工具。Antd 界面好看现代化!前后端分离!无损二次开发!由Django Restful Framework 和 Ant Design Pro V4 驱动
Stars: ✭ 171 (+557.69%)
Mutual labels:  django-admin
Django Admin Relation Links
An easy way to add links to relations in the Django Admin site.
Stars: ✭ 87 (+234.62%)
Mutual labels:  django-admin
Django Admin Env Notice
Visually distinguish environments in Django Admin
Stars: ✭ 207 (+696.15%)
Mutual labels:  django-admin
Django Admin Material
A Django Admin interface based on Material Design by Google
Stars: ✭ 74 (+184.62%)
Mutual labels:  django-admin
Django Admin Autocomplete Filter
A simple Django app to render list filters in django admin using autocomplete widget.
Stars: ✭ 166 (+538.46%)
Mutual labels:  django-admin
Django Practice Book
《Django企业开发实战》已出版
Stars: ✭ 251 (+865.38%)
Mutual labels:  django-admin
Django Admin List Filter Dropdown
Use dropdowns in Django admin list filter
Stars: ✭ 215 (+726.92%)
Mutual labels:  django-admin
Simpleui
A modern theme based on vue+element-ui for django admin.一款基于vue+element-ui的django admin现代化主题。全球20000+网站都在使用!喜欢可以点个star✨
Stars: ✭ 2,418 (+9200%)
Mutual labels:  django-admin

django-admin-extra-urls


This project is not actively maintained. Please check https://github.com/saxix/django-admin-extra-buttons


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):
        ...
        ...

    @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

button() options

These are the arguments that button() accepts

path None path url path for the button. Will be the url where the button will point to.
label None Label for the button. By default the "labelized" function name.
icon '' Icon for the button.
permission None Permission required to use the button. Can be a callable (current object as argument).
css_class "btn btn-success" Extra css classes to use for the button
order 999 In case of multiple button the order to use
visible lambda o: o and o.pk callable or bool. By default do not display "action" button if in add mode
urls None list of urls to be linked to the action.

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 master-build master-cov  
Development dev-build dev-cov  
Project home page: https://github.com/saxix/django-admin-extra-urls
Issue tracker: https://github.com/saxix/django-admin-extra-urls/issues?sort
Download: http://pypi.python.org/pypi/admin-extra-urls/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].