class documentation

class UpdatePatientView(ViewLoggerMixin, LoginRequiredMixin, InstitutionCheckPatientMixin, generic.UpdateView):

View In Hierarchy

Update a given patient's information.

Method get_context_data Add action to context for rendering purposes.
Method get_form_kwargs Pass current user to the form.
Method get_success_url When successfully edited, redirect to that patient's PatientDetailView
Class Variable action Undocumented

Inherited from InstitutionCheckPatientMixin (via ViewLoggerMixin):

Method test_func Undocumented
def get_context_data(self, **kwargs):

Add action to context for rendering purposes.

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

Pass current user to the form.

Returns
Dict[str, Any]Undocumented
def get_success_url(self):

When successfully edited, redirect to that patient's PatientDetailView

Returns
strUndocumented
action: str =

Undocumented