I have something like this set up:
class CategoryPage (webapp.RequestHandler):
def get(self):
** DO SOMETHING HERE **
def post(self):
** DO SOMETHING HERE **
** RENDER THE SAME AS get(self)
The question is, after I process the posted data, how would I be able to display the same information as the get(self) function?