Re: ?? question ,its urgent

2022-06-20 Thread Abhishek Choudhury
Hi Abhinandan, You can create a JSON field as dict and accordingly add key values to that dictionary (provided by the + add option in frontend). Hope this helps. Thanks and regards, Abhishek On Mon, 20 Jun 2022 at 12:17 PM, Abhinandan K wrote: > how to store the data in django databse table if

Re: ?? question ,its urgent

2022-06-20 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
Just an fyi your email showed up as suspect ?? spf=softfail (google.com: domain of transitioning abhinan...@snakescript.com does not designate 2607:f8b0:4864:20::62b as permitted sender) might want to get that fixed Happy Monday !!! Thanks - paul Paul Kudla Scom.ca Internet Services

Re: ?? question ,its urgent

2022-06-20 Thread Seelam Mahesh
Use quarey set On Mon, 20 Jun, 2022, 12:17 pm Abhinandan K, wrote: > how to store the data in django databse table if user append fields > according to their need > for example i have 1 one field 1) name 2) age 3) salary and the sign('+) > if user click on + sign row append one plus in form..my

Re: ?? question ,its urgent

2022-06-20 Thread Wazed Khan
You could make the fields as not required like name = models.CharField(blank =True) I could be wrong or Didn't get your question if I'm in one of them ignore the suggestion. On Mon, Jun 20, 2022 at 12:47 PM Abhinandan K wrote: > how to store the data in django databse table if user append field

Re: i am facing problem with my project to update data in mysql using django

2022-06-20 Thread andrew snyder
can you conform that database user has permissions to update data in all three databases using a mysql client? On Thursday, June 16, 2022 at 12:02:00 PM UTC-4 rafiurra...@gmail.com wrote: > here is my problem description link in stackoverflow > if anyone can help me, i will be gratefull > > lin

missing field after makemigrations

2022-06-20 Thread andrew snyder
There is something in my models.py that breaks makemigrations. The field "rank" is missing from "CharacterSkill". Also, if I uncomment any of the three classes that refer to "Character" the "game" and "player" fields become separate items in the migrations file. -- You received this message b

Django could not parse the remainder

2022-06-20 Thread Koushik Romel
When trying to get a value from restapi in for loop to display it takes hyphen(-) as minus(-). And there is no way to change the api structure because it is fixed. Im struck in this anyone help me.. The exact error and the expected json is given below is down below when i try to print {{key}} th

Re: missing field after makemigrations

2022-06-20 Thread Moheb Mithani
Hi, The reason why "rank" is missing is because you didn't use round brackets "(" ")". It should be "models.SmallIntegerField()" not "models.SmallIntegerField". On Monday, June 20, 2022 at 7:12:58 PM UTC+5 a...@dancingjars.com wrote: > There is something in my models.py that breaks makemigratio

Re: Join Django Africa Chat Group

2022-06-20 Thread Flavien HUGS
Hello, Can I have the link to the WhatsApp group? Le vendredi 17 juin 2022 à 16:31:12 UTC, joshuak...@gmail.com a écrit : > Join Django Africa whatsapp chat and have instance interaction for your > questions > > Follow the link below. > https://chat.whatsapp.com/IgJcwnZR9sr1Jatc5jnSx9 > -- Yo

Re: missing field after makemigrations

2022-06-20 Thread andrew snyder
Thanks, that did the trick. Should I make a feature request that django throw an error whenever a field type has no real type? >>> type(models.SmallIntegerField()) >>> type(models.SmallIntegerField) On Monday, June 20, 2022 at 10:53:37 AM UTC-4 moheb@gmail.com wrote: > Hi, > The reason w

Re: Join Django Africa Chat Group

2022-06-20 Thread ronald munjoma
Hi https://chat.whatsapp.com/IgJcwnZR9sr1Jatc5jnSx9 On Mon, 20 Jun 2022, 17:00 Flavien HUGS, wrote: > Hello, > > Can I have the link to the WhatsApp group? > > Le vendredi 17 juin 2022 à 16:31:12 UTC, joshuak...@gmail.com a écrit : > >> Join Django Africa whatsapp chat and have instance intera

Need some help

2022-06-20 Thread Rohit Lohar
I want to make a form were user will be asked to fill basic details and below that he will have a option to add food and the user can add how many of them he wants so just want to know how can I get the data from user and store it in database?? -- You received this message because you are subs

Re: Need some help

2022-06-20 Thread 'Kasper Laudrup' via Django users
On 20/06/2022 18.39, Rohit Lohar wrote: want to know how can I get the data from user and store it in database?? https://docs.djangoproject.com/en/4.0/intro/overview/ Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users" g