I have a simple form. It has a field that accepts a hostname and a submit button. When the form is submitted my app gets some info about the host provided and display it to the user.
What I'd like to do is after the form is submitted have the URL updated to include the hostname provided by the user. For example:
http://my-host-checker.com
becomes
http://my-host-checker.com/acme.com
Also I would then like someone to be able to email the second URL as a link that can be used to automatically submit the request and get to the results page.
I'm very much a Django newbie and would appreciate some code examples if this is indeed possible.