Added a create new comment form using django CreateView class.
This comment creation only handles the creation of a direct comment to a post and not a comment reply to another comment (issue regarding that #136).
Added the new comment create view
Added a get_absolute_url function to the comment model, to redirect users after successfully creating a comment to it post parent detail view
Set up a URL
Added the create new comment form html template
Linked the comment button on the post template to the new URL
Added a create new comment form using django CreateView class. This comment creation only handles the creation of a direct comment to a post and not a comment reply to another comment (issue regarding that #136).
The new page screenshot:
Close #107