Daniela Rus Morales

Results 111 comments of Daniela Rus Morales

Sounds good. If you have any trouble just create a pull request and we work together on it.

I do fully agree. It is a lot of work, but it's worth the effort. I have been thinking about it since a year but didn't have time to put...

Hi @jhancia, there is no estimation. I started working on it as part of other major changes in the app (branch issue-210, which uses a new model `CommentReaction` instead of...

I don't have a solution. Postgres is not your problem, the problem is that the textarea should behave as a rich text editor. I want to add support for [ProseMirror](https://prosemirror.net/)...

Hi @pranavgore09, thank you, I don't think you can *extend* the app to support primary keys based on UUIDs. I think you will have to fork both django-comments-xtd and django-contrib-comments....

Hi @keiser1080, You could use the setting [COMMENTS_XTD_MAX_THREAD_LEVEL](https://django-comments-xtd.readthedocs.io/en/latest/settings.html#comments-xtd-max-thread-level) to avoid nesting comments. Or if you have several models you want to post comments to, and need to allow nested comments...

Yes, you loose the reply link under each comment because nested comments have been disabled by change the following setting: COMMENTS_XTD_MAX_THREAD_LEVEL = 0 To post the next comment the user...

It depends. Do you want to use the JavaScript plugin in the app? If so look at the [articles_detail.html](https://github.com/danirus/django-comments-xtd/blob/master/example/comp/templates/articles/article_detail.html) template of the comp demo site. Install it following [this instructions](https://django-comments-xtd.readthedocs.io/en/latest/example.html),...

Hi @Logmytech, sorry for the late reply. I don't think loading comments over JS makes any difference SEO-wise. Loading the comments along within the HTML page doesn't harm SEO, as...

With v2.x is not possible because of the relationship between `XtdComment` and `CommentFlag`. However in the branch v3.0.0 there is a new `CommentReaction` model that allows those queries. In [this...