In the code below location_id = "Roger" and court_id = "court1"
return webapp2.redirect("/schedule/%s/%s" % (location_id, court_id))
Where the get definition is as follows
class Schedule(BaseHandler):
def get(self, location_id, court_id):
self.render_template('schedule.html', {'location':location_id,'court':court_id})
But when I reach the schedule.html template using the following routing,
app = webapp2.WSGIApplication([
('/', MainPage),
('/create/([\w]+)', CreateCourt),
('/createlocation/([\w]+)', CreateLocation),
('/schedule/([\w]+/([\w]+))', Schedule)
],
debug=True)
The value of location has grown to include a / and the value of court: "Roger/court1".
How can I keep the two parts of "location/court" separate? I suspect the answer has to do with the routing regexp for /schedule.
