Template:
<form method="post" action="/reply/{{feed.id}}/">
{{rform.as_p}}
<input type="submit" value="send" />
</form>
and url:
(r'^reply/(\d+)/$',reply),
But when we submit the form, {{feed.id}} is not translated and url directs to /reply//
Are parameters not allowed in form actions?
If its allowed then why is it not working here?
Thanks
/reply//(with double slashes),{{feed.id}}outputs empty string. It's the problem.feedcomes from