django icon indicating copy to clipboard operation
django copied to clipboard

The Web framework for perfectionists with deadlines.

Results 282 django issues
Sort by recently updated
recently updated
newest added

Ref: - https://groups.google.com/g/django-developers/c/wp-pnzcB25o - https://code.djangoproject.com/ticket/29822 Changes: - widgets: using standard HTML input types for date, time and datetime

now its easy so add older dates like birthday date in admin calendar widget. ### in ltr ![1](https://user-images.githubusercontent.com/50745963/147825900-949847b3-be69-4f55-b5b5-53940c2c0021.png) ### in rtl ![2](https://user-images.githubusercontent.com/50745963/147825912-5c5d6236-2a40-4341-808c-b74e6f3e0056.png)

This PR provides the following changes to the [Advanced tutorial](https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html): - use [the recommended parameters](https://packaging.python.org/en/latest/tutorials/packaging-projects/#creating-pyproject-toml) for the `[build-system]` table in pyproject.toml. - use [the recommended front-end build tool](https://packaging.python.org/en/latest/tutorials/packaging-projects/#generating-distribution-archives) `python -m...

Fix for [#31949](https://code.djangoproject.com/ticket/31949). Makes builtin decorators async compatible so that they can be applied directly to async views without having to be wrapped in additional `@async_to_sync` and `@sync_to_async` decorators. The...

json.dumps() overrides ensure_ascii=False in DjangoJSONEncoder. Set the flag again. It is okay because JSON allows the use of Unicode characters only. Set separators without spaces as well.

I discovered that `floatformat` may round up high precision decimal numbers. The underlying cause is that the first attempt to convert input to a decimal is written in a way...

[Ticket #33616](https://code.djangoproject.com/ticket/33616) Added on_commit_robust function in the same style as send_robust in signals.

ticket-33735 Initial PoC to handle asynchronous responses in Django ASGI handler.