Django bugfix release: 3.2.6

2021-08-01 Thread Carlton Gibson
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2021/aug/01/bugfix-release/ -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Own Widget as Stadard

2021-08-01 Thread Sebastian Jung
Hello Christian, Thanks for your response but your solution is not suitable for my problem. Regards Christian Ledermann schrieb am So., 1. Aug. 2021, 20:42: > https://adamj.eu/tech/2021/05/05/3-uses-for-functools-partial-in-django/ > > "Here are a few ways I’ve used partial in Django projects.

Re: 2.2.* to 3.2.5 update: jsonb deserialisation is broken!

2021-08-01 Thread Jason
going from 2.2.x to 3.2 is three separate releases of django. That's alot to go in one jump. Might help if you update one release at a time and narrow down which version this regression is in. In addition, I'd check the changelogs for each version and see what, if any, might apply to your i

Re: System check takes so much? Bug?

2021-08-01 Thread Oliver Küchler
Ok, I found the problem: Apparently Django already executes the SQL-queries during the System check, which are needed to construct the Dash-app (in my case I used [Dash Cytoscape][1]). And yeah, it was really my database that was to big and therefore causing the queries too take so much time. H

Re: Own Widget as Stadard

2021-08-01 Thread Christian Ledermann
https://adamj.eu/tech/2021/05/05/3-uses-for-functools-partial-in-django/ "Here are a few ways I’ve used partial in Django projects. 1. Making reusable fields without subclassing" On Sun, 1 Aug 2021 at 19:12, sebasti...@gmail.com wrote: > Hello, > > i have a own widget that replace TextInput wid

Own Widget as Stadard

2021-08-01 Thread sebasti...@gmail.com
Hello, i have a own widget that replace TextInput widget. Now i want everytime when i have in model.py a declaration models.TextField() that these new widget is automatical used in forms.py without everytime manual declared it in forms.py. Have anyone an idea? Regards -- You received this m

Re: Conmect two docker container

2021-08-01 Thread Derek
Docker has a short tutorial on their website: https://docs.docker.com/samples/django/ On Sunday, 1 August 2021 at 04:48:54 UTC+2 parampal...@gmail.com wrote: > I have two docker container one is postgresql > > > > > And second one is django container > how i connect this two container > > So

Bank payment Integration

2021-08-01 Thread Gagan Hang Limbu
does anyone knows how to integrate bank payment outside US (I used stripe payment but it does not work) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-

2.2.* to 3.2.5 update: jsonb deserialisation is broken!

2021-08-01 Thread Tim Richardson
Database is postgresql 12 psycopg2-binary==2.8.6 \ The bug occurs when I move from django 2.2.* to 3.2.5 A raw sql query is now behaving differently. A result that was previously deserialised from a jsonb field into a python dict now returns a string (and breaks things). this is a simplifed v

datetime_safe deprecation

2021-08-01 Thread Matthew Hegarty
I note that `datetime_safe` is to be removed in Django 5.0 . This module fixed the issue with the date padding for years < 1000, however this issue still remains . Plea