kpsul/gestioncof/autocomplete_light_registry.py

8 lines
227 B
Python
Raw Normal View History

import autocomplete_light
from django.contrib.auth.models import User
autocomplete_light.register(
User, search_fields=('username', 'first_name', 'last_name'),
autocomplete_js_attributes={'placeholder': 'membre...'})