[Answered ]-How to pass parameters from my form action to a view? Django

2👍

Can you change your url like this and try..
url(r'^write_comment/(?P<block_id>\d+)/$', writers_block.views.write_comment, name='write_comment')

Leave a comment