I\'m trying to have my form submit to a route which will validate the data then redirect back to the original route.
For example:
The Pyramid documentation has a particularly on-point section with the following example:
from pyramid.httpexceptions import HTTPFound def myview(request): return HTTPFound(location='http://example.com')