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

1from django.utils.translation import ugettext_lazy as _ 

2from ..audit.filters import BaseAuditListFilter 

3 

4 

5class ResolvedByListFilter(BaseAuditListFilter): 

6 """Filter for ``resolved_by``.""" 

7 title = _("Resolved By") 

8 parameter_name = "resolved_by"