I want to send model form object in the URLConf just like this
url('^myUrl/Url/$',
'myView',
{"EvaluationForm": MyModelForm()},
when i try to get this form in the view like this.
myView(request, EvaluationForm=None):
form = EvaluationForm(request.POST)
i get the following error.
'MarketExpertEvaluationForm' object is not callable
Can anybody tell me whats the problem here?
Thanks.