Skip to content

Dgo-list/django-relatedadminwidget

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-relatedadminwidget

Widget for displaying edit and delete links alongside foreign key admin widgets

Flowers

Also see this project: django-admin-enhancer

Installation:

  1. pip install django-relatedadminwidget

  2. Add "relatedwidget" to settings.INSTALLED_APPS

  3. You may want to run your project's ./manage.py collectstatic

  4. In your applications' admin.py, let the model admins inherit from RelatedWidgetWrapperBase like in this example:

    from django.contrib import admin from relatedwidget import RelatedWidgetWrapperBase

    class MyModelAdmin(RelatedWidgetWrapperBase, admin.ModelAdmin): pass

    admin.site.register(MyModel, MyModelAdmin)

It also works with TabularInline and StackedInline! Remember the order of inheritence, always put RelatedWidgetWrapperBase first!

Troubleshooting

If you get a TemplateDoesNotExist error on 'relatedwidget/widget.html', you might have to add django.template.loaders.eggs.Loader to your settings.TEMPLATE_LOADERS.

Credits

User nasp did most of the work, I just updated it for Django 1.4 and packed it as an app.

About

Widget for displaying edit and delete links alongside foreign key admin widgets

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 72.4%
  • JavaScript 16.8%
  • HTML 10.8%