I'm using Google App Engine for creating a page with a form to create an entity called "tutorial". Then when hit next, the user has another form in order to create a chapter for the tutorial previously created. My problem is bringing the reference of the "tutorial" to the "chapter"
handler for the new tutorial page:
class NewTut(FuHandler):
def get(self):
self.render('newTut.html')
def post(self):
title = self.request.get("title")
tags = self.request.get("tags")
tut = Tutorial(title=title, tags=tags)
tut.put()
self.redirect('/newchap' #should i put here 'tut'?#)
This part works perfectly but then how do I use this tut when creating a chapter?
handler for the new chapter page:
class NewChap(FuHandler):
def get(self):
self.render('newChapter.html')
def post(self):
tutorial = Tutorial(??????)
title = self.request.get("chapTitle")
content = self.request.get("content")
note = self.request.get("note")
What do I need to do here to get this referencing working?