regluit/core/lookups.py

10 lines
256 B
Python
Raw Normal View History

from selectable.base import ModelLookup
from selectable.registry import registry
from django.contrib.auth.models import User
class OwnerLookup(ModelLookup):
model = User
search_fields = ('username__icontains',)
registry.register(OwnerLookup)