django-fluent-comments
django-fluent-comments copied to clipboard
A modern, ajax-based appearance for django comments
How to limit the number of comments to be displayed and add button of "Load More" to see more comments? @vdboor
Added js controls logic which is backwards compatible but allows is_reversed to be specified
This might be added to ensure that the count of the comments is also updated.
This is an initial PR, its a work in progress and Ill update the [WIP] to [REVIEW] once its ready for review.
When trying to add django-threadedcomments, the [documentation](https://django-fluent-comments.readthedocs.io/en/latest/topics/threaded_comments.html) states to do this: ``` INSTALLED_APPS += ( 'threadedcomments', ) COMMENTS_APP = 'fluent_comments' ``` and then run ``` ./manage.py migrate ./manage.py migrate_comments ```...
There's a "bug" in postgreSQL (in fact, it's more a feature: strong typed, contrary to MySQL which is "weakly typed", since PostgreSQL 8.3): Now if you've got: models.py ``` class...
I have included `FLUENT_COMMENTS_MULTIPART_EMAILS = True` in my `settings.py` but whenever the email is sent to the `MANAGERS`, it uses the .txt version. When I `python manage.py shell` and do...