django / django-contrib-comments

BSD 3-Clause "New" or "Revised" License
614 stars 196 forks source link

pass request.FILES to form #189

Open DominicLGit opened 1 year ago

DominicLGit commented 1 year ago

Passing request.FILES to the CommentForm in post_comment view.

Allows for the comment form and comment model to be extended with file fields without having to override the post_comment view.

190

DominicLGit commented 1 year ago

build currently failing due to 3.6 removal from ubuntu 22.04

https://github.com/actions/setup-python/issues/544

claudep commented 1 year ago

Thanks, Python 3.6 removal is taken care in #191. Could you please add a test in you PR?

DominicLGit commented 1 year ago

Hopefully that's close to what you had in mind!

DominicLGit commented 1 year ago

Think I've fixed all the required changes.