forked from DGNum/gestioCOF
10 lines
304 B
Python
10 lines
304 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'),
|
|
autocomplete_js_attributes={'placeholder': 'membre...'},
|
|
widget_attrs={'data-widget-minimum-values': 3})
|