Michal Dabski
Michal Dabski
The RGBColorField can be an optional field, but the colur picker widget does not seem to support it and defaults to black color. Example model field: ```python nav_bar_color = RGBColorField(null=True,...
Django form field has a property that can be set in constructor: ``` # show_hidden_initial -- Boolean that specifies if it is needed to render a # hidden widget with...
As per Dajngo's default form renderer, a hidden field should be appended containing default value if `show_hidden_initial=True` Addresses Issue #534
Django recently released a [patch](https://www.djangoproject.com/weblog/2022/aug/03/security-releases/) that addresses CVE-2022-36359 I am concerned that since this library does not use Django's FileResponse, it may be vulnerable to a similar type of attack...
All dates in rendered charts appear in English, even when user's language is changed and the rest of the page shows in another language, and renders dates using the correct...
I have the followinmg subquery that should annotate a user with their team name: ```python Subquery(Team.objects.filter(users__pk=OuterRef('pk')).order_by('order').values_list('name', flat=True)[:1]) ``` However, this code fails for non-default locale because modeltranslation replaces `values_list('name', flat=True)`...
As per description, the label says "today" rather than "current time" or "now" or alternate wording appropriate for time instead of date. The issue can be replicated on the demo...
HISTORY.rst has never been updated
Could you please specify license in the project?
### Checklist - [X] I've looked at the [documentation](https://summernote.org/deep-dive/) to make sure the behavior isn't documented and expected. - [X] I'm sure this is an issue with Summernote, not with...