if using grappeli, copy RelatedObjectLookups.js to your admin_media folder from django's admin media
TEMPLATE_CONTEXT_PROCESSORS = (
'tekextensions.context_processors.admin_media_prefix',
)
INSTALLED_APPS = (
'tekextensions',
)
url(r'^add/(?P<model_name>\w+)/?$', 'tekextensions.views.add_new_model'),
override any ModelChoiceField widget with SelectWithPopUp
from tekextensions.widgets import SelectWithPopUp
from django import forms
class CustomForm(forms.Form):
company = forms.ModelChoiceField(CustomModel.objects, widget=SelectWithPopUp)