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 gettext_lazy as _
2from ..audit.filters import BaseAuditListFilter
3
4
5class PublishedByListFilter(BaseAuditListFilter):
6 """Filter for ``published_by``."""
7 title = _("Published By")
8 parameter_name = "published_by"