«
class documentation

class PatientListView(ViewLoggerMixin, generic.ListView):

View In Hierarchy

Renders a list of all patients in the database showing basic information and links to the individual entries. Depending from where this view is called, the list is filterable.

Method get_context_data Add FilterSet to context for displaying filter form.
Method get_queryset Add ability to filter queryset via FilterSets to generic ListView.
Class Variable action Undocumented
Class Variable context_object_name Undocumented
Class Variable template_name Undocumented
Instance Variable filterset Undocumented
Instance Variable form Undocumented
Instance Variable is_filterable Undocumented
Instance Variable queryset_pk_list Undocumented
def get_context_data(self, **kwargs):

Add FilterSet to context for displaying filter form.

Parameters
**kwargs:AnyUndocumented
Returns
Dict[str, Any]Undocumented
def get_queryset(self):

Add ability to filter queryset via FilterSets to generic ListView.

Returns
QuerySet[Patient]Undocumented
action: str =

Undocumented

context_object_name: str =

Undocumented

template_name: str =

Undocumented

filterset =

Undocumented

form =

Undocumented

is_filterable: bool =

Undocumented

queryset_pk_list =

Undocumented