I am trying to update the Django User model with the class based UpdateView that automatically renders with the current user but am getting an error that a pk or slug is req
I need to override the get_object() method on the update view and do not need to override form_valid. The custom get_object() method is:
get_object()
def get_object(self, queryset=None): return self.request.user