Skip to main content

more widgets for the django admin

Project description

django-admin-xtra-widgets
===============================================

Overview
------------------------------------
more widgets for the django admin


Quick start
------------------------------------
If you need the SelectAndLink widget
In settings.py, add 'admin_xtra_widgets' to the INSTALLED_APPS
In urls.py add ``(r'^admin-xtra-widgets/', include('admin_extra_widgets.urls'))`` to your urlpatterns

VerboseManyToManyRawIdWidget
------------------------------------
This widget adds a clickable text value to the usual raw_id widget. It indicates the current values of the field

In your admin

from admin_xtra_widgets.widgets import VerboseManyToManyRawIdWidget

class YourAdmin(admin.ModelAdmin):
#raw_id_fields = ["your_m2m_field"]

def formfield_for_dbfield(self, db_field, **kwargs):
if db_field.name in ('your_m2m_field', 'other_m2m_field'):
kwargs['widget'] = VerboseManyToManyRawIdWidget(db_field.rel, self.admin_site)
else:
return super(YourAdmin,self).formfield_for_dbfield(db_field,**kwargs)
kwargs.pop('request')
return db_field.formfield(**kwargs)



License
=======

django-favman is licensed under the GNU-LGPL

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

django-admin-xtra-widgets-0.1.1.tar.gz (4.3 kB view hashes)

Uploaded Source

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