PathagarBooks / pathagar

Pathagar is a simple bookserver serving OPDS feeds
GNU General Public License v2.0
101 stars 26 forks source link

Add comments using django framework #55

Closed godiard closed 9 years ago

godiard commented 9 years ago

This feature is enabled modifing ALLOW_USER_COMMENTS in settings.py and is disabled by default. When is enabled, show a form to add comments from the users in the detail of every book. The user do not need to be logued. It's implemented using the django comments framework [1]

[1] https://docs.djangoproject.com/en/1.4/ref/contrib/comments/

sethwoodworth commented 9 years ago

Hey @godiard I've finally gotten around to reviewing this PR. The only caveat I see is that if you are logged out and submit a comment, it will fail. The failure will take you to a new page telling you need to supply an email address in addition to your comment for the comment to be accepted. This isn't an ideal workflow, but I am fine with opening an issue and dealing with it later.

godiard commented 9 years ago

Thanks, I will look at that issue.