Re: topics to master

2024-09-02 Thread Swarup Selvaraj
I recommend Corey M Schaffer tutorial series https://www.youtube.com/watch?v=UmljXZIypDc On Monday 2 September 2024 at 07:50:42 UTC+5:30 Abdul Qoyyuum Haji Abdul Kadir (Agent Q) wrote: > Not sure what you mean but if you've already gone through the first steps > in Django here: Django document

Re: Reactive frontend + Session Authentication (+ csrf ?)

2024-07-10 Thread Swarup Selvaraj
n, I would use FastAPI <https://fastapi.tiangolo.com/> for backend. Thanks, SWARUP Selvaraj On Monday 20 May 2024 at 20:39:08 UTC+5:30 zvo...@seznam.cz wrote: > With traditional frontend (like realized with Django templates), the user > will GET the login form and in this step Django sends

Re: Select Boxes and Database

2023-12-07 Thread Swarup Selvaraj
n and answer thread that explains how to create cascading dropdowns using javascript. It has a simple example of how to use an object to store the options and a function to populate the select elements. Regards, SWARUP Selvaraj On Sunday 3 December 2023 at 01:58:20 UTC+5:30 David Merrick

Re: databases

2023-12-07 Thread Swarup Selvaraj
django admin. We need to reset sequences <https://forum.djangoproject.com/t/reset-id-model-autoincrement/8857> after executing loaddata to set appropriate autoincrement sequences. Regards, SWARUP Selvaraj On Friday 1 December 2023 at 19:53:00 UTC+5:30 Karim Dahman wrote: Hi, how can

Re: Displaying numbers in languages

2023-12-07 Thread Swarup Selvaraj
cut) We can enable these (USE_L10N=True USE_I18N=True) in settings.py file. If we ensure the right locale is set, django will render numbers appropriately according to the user's locale. Regards, SWARUP Selvaraj On Thursday 30 November 2023 at 00:07:05 UTC+5:30 Vincenzo Celano wrote: >