forked from DGNum/gestioCOF
8 lines
207 B
Python
8 lines
207 B
Python
import autocomplete_light
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
autocomplete_light.register(
|
|
User, search_fields=('username', 'first_name', 'last_name'),
|
|
attrs={'placeholder': 'membre...'}
|
|
)
|