Comment
Comment copied to clipboard
Django comment app. It can be associated with any given model.
- Change base image from alpine to slim-bullseye because using alpine can make python docker slower. - Update postgres image from 9.6 to 14. - Fix bug that django container...
### Environment * os: ubuntu 20.04LTS * docker version: Docker version 20.10.12, build 20.10.12-0ubuntu2~20.04.1 ### Describe the bug Hello, thanks for this useful software ! I have erorr on building...
In order to reduce the app dependencies, I would like to replace bootstrap with a custom CSS.
### Environment * Python version: 3.8 * django-comments-dab version: 2.5.1 ### Proposed Functionality It would be nice to be able to attach an images as part of a comment so...
### Proposed Functionality The reactions functionality (Buttons in the UI and endpoints) can be disabled. ### Use Case This is needed when commenting by anonymous is enabled and there is...
It should be noted that `django-comments-dab` does break `Django` convention in regard to the static files. On the [Managing Static Files](https://docs.djangoproject.com/en/3.0/howto/static-files/) page, on section 4 of "Configuring Static Files", Django...
### Describe the bug Currently, `managers` can be imported from `models`. ### Steps To Reproduce Something like this works: ```python from comment.models import CommentManager ``` ### Expected behavior Managers should...
### Change Type [ x] Refactor/Enhancement [ ] Testing [ ] CI/CD [ ] Other ### Proposed Changes After the change in d96fa5a26e35442daa052f833f4cd65fc7d9b003, static files are included implicitly in the...
The BaseCommentSerializer's get_replies method only returns replies if the comment has no parent comment. This means replies of replies are always ignored. https://github.com/Radi85/Comment/blob/1b5a0437a7f2a95a4de4e7de12027f49fe52d92d/comment/api/serializers.py#L70-L82