I am new to django and in my current job i had to edit the existing code. Now i am not able to find in the documentation where i can find all methods which can be over ridden and what they are suppose to do. In mY views file someone has defined these functions but i don't know what they are supposed to do.
Like
def get_context_data(self, **kwargs):
def get(self, request, *args, **kwargs):
def post(self, request, *args, **kwargs):
def get_success_url(self):
def form_valid(self, form):
Now i am not sure if he as write his new methods or He is overriding the buil in methods because he is not calling them anywhere.
can someone guide where are these methods defined in documentation so that i can see what are some other methods and what they do