Marduk Bolaños
Marduk Bolaños
### Bug Description When using django-select2 in the Django Admin (regardless of the value of settings.LANGUAGE_CODE) the corresponding i18n file (e.g. en.js) throws the following exception in the brower console:...
As already [discussed](https://github.com/codingjoe/django-select2/discussions/290), the documentation of this widget is lacking. This PR adds a description of the functionality provided by the widget.
As described in #249 and #297 django-select2 does not currently work with selects added dynamically in the Django admin. The solution was implemented in #249 and all credit should go...
In order to enable the i18n support for Select2 the `media` property of `JazzminSelect` should be defined as: ```python from django.contrib.admin.widgets import get_select2_language @property def media(self): i18n_lang = get_select2_language() i18n_js...
Generating stubs for built-in assemblies is time consuming. It should be an opt-in feature controlled via a command line parameter. That way `dotnet watch build` can finish quickly.
First of all thank you for writing this awesome tool! I installed it using .NET 8. When I executed GeneratePythonNetStubs I got the error (abridged): ``` You must install or...
**Description** Calling the `type` method of the `Controller` class with an uppercase string as argument from a Windows host with US keyboard layout results in gibberish when the active window...
### Missing discussion on computation expressions and the Result type The [documentation page](https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/results) on the `Result` type only discusses pattern matching. There is no discussion of computation expressions. Therefore, less...
I did all the changes necessary to build and execute the Electron app using .NET 6 and also to get rid of all errors in the JS console. The Redux...
In the chapter The Elm Architecture the example To Do List App uses a list for storing the To Do items. This results in rather cumbersome code for locating and...