User goes to a page which has a SELECT choice list. Once he picks a choice, without submit button, but rather by SELECTION, we render a new page which is process by a different view (in a different app).
CHOICES = {( EDIT , EDIT ), ( ASSIGN , ASSIGN ), # etc # }
select = forms.CharField(widget=forms.Select(choices=CHOICES))
Now, I am pretty clueless how to go about writing my view.
choice_view.py renders choice.html; then choosing EDIT process by edit.py with some parameters.
Can someone lead me in the right direction?
Thank you!