0d09bf62af
And this time it works
10 lines
232 B
Python
10 lines
232 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import autocomplete_light
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
autocomplete_light.register(
|
|
User, search_fields=('username', 'first_name', 'last_name'),
|
|
attrs={'placeholder': 'membre...'}
|
|
)
|