Daniela Rus Morales

Results 111 comments of Daniela Rus Morales

Yes, you can customize it in the `webpack.config.js` file in the root directory. Edit it and add the `automaticNameDelimiter` entry to the `splitChunks` attribute (after line 20). If you wanted...

Hi @PetrDlouhy, the plugin version has to match the version you have installed of django-comments-xtd. If you installed django-comments-xtd 2.9.3 (which is available since yesterday), then verify that your template...

Thanks @PetrDlouhy, the PR code looks good (thanks for the additional fixes). On the other hand the example code seems a bit like a hack, which is a pity given...

Thanks @sabyasachi. An initial description of the user story could be: 1. Enable comment deletion by setting `COMMENTS_XTD_ALLOW_COMMENT_DELETION = True`. 1. Add a "Delete" link in the footer of the...

Sounds good @callmeUmer. I assign it to you. Feel free to reach out here or by email (it is in my commits).

Indeed, why not. Would you like to document it?

Sounds good! The docs are built with [Sphinx](https://www.sphinx-doc.org/en/master/). I also install [sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme/) and [sphinx-autobuild](https://pypi.org/project/sphinx-autobuild/). With those packages I cd in the `docs/` directory and run `sphinx-autobuild -p 1025 . _build/`...

No, there's no special function for this. The way to delete all the comments sent to an instance of a model `Story` of an app registered as `blog`, via a...

You can use the Meta class from inside the Model class. It's accessible via the [`_meta`](https://docs.djangoproject.com/en/3.1/ref/models/meta/) attribute of any model class. Using the [`label`](https://docs.djangoproject.com/en/3.1/ref/models/options/#app-label) attribute of `_meta` you could get...

The solution is explained along this thread. The code two comments above shows how to delete comments posted to an object. You can write a receiver in the same way...