Basically, I just want to be able to get the parameter community_name, can this be done with
(r'^(?P<community_name>\w+)/matches/submit/$', MatchWizard([MatchStep1Form, MatchStep2Form, MatchStep3Form])),
or do I need a view? If I have a view, I can have the URLConf like
(r'^(?P<community_name>\w+)/matches/submit/$', "matches.views.submit_form"),
and do the normal view procedure, def submit_form(request, community_name):
Any idea? Thanks