[Answer]-How to use the parameter passed through url in validation of form

1👍

Include it with your POST data when you create a new ArticleBufferFormSet

formset = ArticleBufferFormSet(dict(request.POST.items() + {'article_id': article_id}))

Leave a comment