Re: getting unique id

2022-11-23 Thread Larry Martell
On Wed, Nov 23, 2022 at 1:43 PM Shaheed Haque wrote: > > Are all the threads in the same Python process? No > Or the same machine? No > Do they have to persist across process (or machine) restarts? Yes. Playing around with using F() but still don't have it working as desired. > On Wed, 23

Re: getting unique id

2022-11-23 Thread Shaheed Haque
Are all the threads in the same Python process? Or the same machine? Do they have to persist across process (or machine) restarts? On Wed, 23 Nov 2022, 16:57 Larry Martell, wrote: > I have an app that needs to get a unique ID. Many threads run at the > same time that need one. I would like the

Re: getting unique id

2022-11-23 Thread Larry Martell
On Wed, Nov 23, 2022 at 3:01 PM Thomas Lockhart wrote: > > Why not use the existing Django AutoField? Because I have multiple rows with the same batch_id, and also I would like the batch_ids to be sequential. The use case is a batch job dashboard. Users run jobs that spawn many sub jobs. The

Re: getting unique id

2022-11-23 Thread Thomas Lockhart
Why not use the existing Django AutoField? - Tom > On Nov 23, 2022, at 8:56 AM, Larry Martell wrote: > > I have an app that needs to get a unique ID. Many threads run at the > same time that need one. I would like the IDs to be sequential. When I > need a unique ID I do this: > > with

Re: Forbidden (403) - CSRF verification failed. Request aborted.

2022-11-23 Thread Nagaraja Tuticorin
Make your database as a public make format of database chmod www-data=www-data ./filename On Wed, 23 Nov, 2022, 7:33 am Chukwudi Onwusa, wrote: > Check your template, immediately after the opening tag add > {% csrf_token %} > If you have it already, kindly check to ensure it's correctly spelt

Re: Forbidden (403) - CSRF verification failed. Request aborted.

2022-11-23 Thread Nagaraja Tuticorin
Make your database as a public make format of database chmod www-data=www-data ./filename On Wed, 23 Nov, 2022, 5:28 am Carlos Roberto, wrote: > Hi everyone! > > I use ngrok to make my projects available in django. I'm having trouble > accessing the admin page. After I enter the username and

User model as ForeignKey forcing username instead of id.

2022-11-23 Thread Blaine Wimberly
For some reason, no matter what I do, User.pk, User (as ForeignKeyField, and just about anything else is forcing the username as the value instead of User.id. I have googled searched this issue in every way I can think if. The only results I keep finding are the exact opposite issue

Re: User model as ForeignKey forcing username instead of id.

2022-11-23 Thread Blaine Wimberly
Issue resolved. In pure frustration, I dumped the database and deleted all migrations. While I am not positive, I am pretty sure the issue originated due to updating the original CharField to be the ForeignKey, Django in its infinite wisdom (not sarcastic) was finding the first non integer in

getting unique id

2022-11-23 Thread Larry Martell
I have an app that needs to get a unique ID. Many threads run at the same time that need one. I would like the IDs to be sequential. When I need a unique ID I do this: with transaction.atomic(): max_batch_id = JobStatus.objects.select_for_update(nowait=False).aggregate(Max('batch_id'))

Re: User model as ForeignKey forcing username instead of id.

2022-11-23 Thread Erik Manuel Herazo Jimenez
why don't you try to return it by context using a dictionary?, specify where what is the key and what is the value El mié, 23 de nov. de 2022 10:19 a. m., Blaine Wimberly < blaine5...@gmail.com> escribió: > Issue resolved. > > In pure frustration, I dumped the database and deleted all

Help

2022-11-23 Thread bode moses
Greetings Please can someone assist me on this question? i'm new to django i am developing my first website using Django and sublime text as editor. each time my computer shutdown. i don't know how to resume back to the normal project page. CMD C:\User\Olabode\pycharmprojects> cd