Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# Imports 

2 

3from django import forms 

4from django.utils.translation import gettext_lazy as _ 

5 

6# Exports 

7 

8__all__ = ( 

9 "UserImpersonationSearchForm", 

10) 

11 

12# Forms 

13 

14 

15class UserImpersonationSearchForm(forms.Form): 

16 """Collect input for searching users to be listed for impersonation..""" 

17 

18 term = forms.CharField( 

19 label=_("Search For"), 

20 help_text=_("The name, user name, or email address of the user you wish to impersonate."), 

21 required=True 

22 )