Diederik van der Boor

Results 47 issues of Diederik van der Boor

Since the verification code is read only during the template parsing, the contents will not update when a site uses cached templates. Is there a specific reason for reading these...

Looking at https://github.com/chhantyal/sorl-thumbnail-async/blob/master/thumbnail/templatetags/thumbnail_tags.py#L31 the template tag doesn't read all options. It assumes there is only `thumbnail_options[0]` and `thumbnail_options[1]`. I think the code should loop though `thumbnail_options[1:]` Thoughs?

When a `VariableNode()` resolves an object, it is not printed as string. This could be done using the `__toString()` method. Where could this be implemented? The source was a bit...

The nl2br filter does not work anymore, because the autoescape feature convert it to a literal tag. As current workarround, I've figured I can use: ``` {{ tagname | escape...

Based on the reports #38 and #39. It's not possible to redefine fields as translatable if they also exist on the shared model. - The official procedure is adding the...

In the dependency `Django >= 1.11.10,< 2.0`, pyup suggests to upgrade this to `Django==2.0.2`. This seems a bit odd, as the project explicitly states it doesn't handle Django 2.0. ---...

considering
new feature

https://django-contrib-comments.readthedocs.io/en/latest/settings.html When `COMMENTS_HIDE_REMOVED = True` the comments can be shown as "This comment was removed"

enhancement

When sites have a nice login/registration system, it's useful to disable anonymous comments. This should be configurable in a settings variable.

enhancement

Support following email threads, to visitors can receive notifications.

enhancement

Add a "Recent comments" module to the dashboard. Inspiration from https://mezzanine.readthedocs.org/en/latest/overview.html

feature