Diederik van der Boor

Results 206 comments of Diederik van der Boor

Django comments use a generic foreign key, so creating a reverse relation is a bit difficult. It can be done through, see https://github.com/django-fluent/django-fluent-comments/blob/master/fluent_comments/models.py#L94 for an example

Agreed, this would be useful. Endless pagination requires JavaScript and is thus somewhat opinionated. If you want this feature, I think it would make sense to integrate the UI bits...

Same question here (for an external project). Looking at the source of `db_url_config`, it's not yet possible but it can be fixed. The `STORAGE_ENGINE`, `COLLATION` and `CHARSET` should be added...

@jamespacileo could you merge this fix? @Burakhan I've found a temporary workaround using `export LANG=C.UTF-8`

(django-parler maintainer here) I've managed to include parler in an oscar website. A somewhat rough implementation is: https://gist.github.com/vdboor/46348490c7cd1a5b08f4 This doesn't properly support tab-switching (entering a new language means saving the...

I'm cleaning up old issues, I'm presuming this is already fixed. This looks like an Django issue.

Thanks! I see now what's happening. This is because Django's "GenericForeignKey" uses a Text field for the ID field. In postgres, this breaks with fields that store the data in...

Ah that's indeed how it should be implemented. This is one for https://github.com/django/django-contrib-comments though, as we mainly provide nice Ajax UI fluff on top of it!

Hmm it looks like sqlite isn't supported by the threadedcomments migration. You only need this when there are existing comments in the database, otherwise, you can skip that command.

Hi! This is a neat feature to have, I like adding it. There are a few things I'd prefer to see updated though: - Give a different name to `COMMENT_CONTROLS`....