how to solve please help me

2023-08-10 Thread Kani Sbt
django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency lottyapp.0001_initial on database 'default'. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this g

Re: how to solve please help me

2023-08-10 Thread Mz Gz
Maybe you referenced another model in your model and the referenced model is no more there or its name changed On Thu, 10 Aug 2023, 2:10 pm Kani Sbt, wrote: > django.db.migrations.exceptions.InconsistentMigrationHistory: Migration > admin.0001_initial is applied before its dependency lottyapp.00

Re: how to solve please help me

2023-08-10 Thread Kani Sbt
i solved that , i deleted all the databases and makemigrations and migrate and all was done good On Thu, 10 Aug 2023 at 18:12, Mz Gz wrote: > Maybe you referenced another model in your model and the referenced model > is no more there or its name changed > > On Thu, 10 Aug 2023, 2:10 pm Kani Sbt

i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Peram Ashokkumar
i have been learning python fullstack since in the 3 months in our institute that mentor tought only basic but i want to get job as experience candidate because i have three years of gap please any respond to this -- You received this message because you are subscribed to the Google Groups

Re: Full Stack Developer || Frontend Developer

2023-08-10 Thread Makrand
I am interested in this position On Thu, 10 Aug, 2023, 8:00 pm Deepak Singh, wrote: > Hi All > > I am looking for new opportunities as Full Stack developer or Front End > developer. I have experience of more than 2 years. As highlighted in my > CV, I have demonstrated proficiency in developing

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Peter Benjamin Ani
Build more projects On Thu, 10 Aug 2023 at 14:23, Peram Ashokkumar wrote: > i have been learning python fullstack since in the 3 months in our > institute that mentor tought only basic but i want to get job as > experience candidate because i have three years of gap please any respond > to t

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Basith
Any resources? On Thursday, 10 August 2023 at 21:44:56 UTC+5:30 Peter Benjamin Ani wrote: > Build more projects > > On Thu, 10 Aug 2023 at 14:23, Peram Ashokkumar > wrote: > >> i have been learning python fullstack since in the 3 months in our >> institute that mentor tought only basic bu

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread John Ayodele
Build a good portfolio and push them to GitHub On Thu, 10 Aug 2023 14:23 Peram Ashokkumar, wrote: > i have been learning python fullstack since in the 3 months in our > institute that mentor tought only basic but i want to get job as > experience candidate because i have three years of gap pl

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Basith
Any sample projects? any free resources? On Thursday, 10 August 2023 at 22:25:30 UTC+5:30 John Ayodele wrote: > Build a good portfolio and push them to GitHub > > On Thu, 10 Aug 2023 14:23 Peram Ashokkumar, > wrote: > >> i have been learning python fullstack since in the 3 months in our >> i

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Peter Benjamin Ani
Try getting the ebook (Django 4 by example) and build projects in it, from there u are good to go On Thu, 10 Aug 2023 at 18:01, Basith wrote: > Any sample projects? any free resources? > > On Thursday, 10 August 2023 at 22:25:30 UTC+5:30 John Ayodele wrote: > >> Build a good portfolio and push t

hello i have made my crud and it works well. but when i add fields in the class. the crud does not work

2023-08-10 Thread Abdoulaye SENE
class Administratif(models.Model): nom = models.CharField(max_length=250) prenom = models.CharField(max_length=250) email = models.EmailField(max_length=250) tel = models.IntegerField() annEmploi = models.IntegerField(null=True,) def __str__(self): return self.nom

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Joshua Urasa
documentation,youtube and books On Thu, Aug 10, 2023 at 8:05 PM Peter Benjamin Ani < benjaminpari...@gmail.com> wrote: > Try getting the ebook (Django 4 by example) and build projects in it, from > there u are good to go > > On Thu, 10 Aug 2023 at 18:01, Basith wrote: > >> Any sample projects?

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Chisom Iheanacho
hello chief.. I have Django 3 by example, can I follow the projects in it too? pls can I get your WhatsApp number too? On Thu, Aug 10, 2023, 6:05 PM Peter Benjamin Ani wrote: > Try getting the ebook (Django 4 by example) and build projects in it, from > there u are good to go > > On Thu, 10 Aug

Re: Full Stack Developer || Frontend Developer

2023-08-10 Thread N Laxmi Narasimha
your resume was not good you should need to build good resume On Thu, 10 Aug 2023 at 20:00, Deepak Singh wrote: > Hi All > > I am looking for new opportunities as Full Stack developer or Front End > developer. I have experience of more than 2 years. As highlighted in my > CV, I have demonstrate

Re: i learnt django basics but i want to learn django for become a master in django where can i get resourse

2023-08-10 Thread Peter Benjamin Ani
234811513 that’s my WhatsApp On Thu, 10 Aug 2023 at 19:35, Chisom Iheanacho wrote: > hello chief.. I have Django 3 by example, can I follow the projects in it > too? > pls can I get your WhatsApp number too? > > On Thu, Aug 10, 2023, 6:05 PM Peter Benjamin Ani < > benjaminpari...@gmail.com>

Re: hello i have made my crud and it works well. but when i add fields in the class. the crud does not work

2023-08-10 Thread 'Kasper Laudrup' via Django users
On 10/08/2023 19.11, Abdoulaye SENE wrote: class Administratif(models.Model): nom = models.CharField(max_length=250) prenom = models.CharField(max_length=250) email = models.EmailField(max_length=250) tel = models.IntegerField() annEmploi = models.IntegerField(null=True,) def __str__(self): retu

Re: hello i have made my crud and it works well. but when i add fields in the class. the crud does not work

2023-08-10 Thread Abdoulaye SENE
i have to add fields to my class. because i have other fields.normal this problem has a solution Le jeu. 10 août 2023 à 19:04, 'Kasper Laudrup' via Django users < django-users@googlegroups.com> a écrit : > On 10/08/2023 19.11, Abdoulaye SENE wrote: > > class Administratif(models.Model): > > nom

Re: hello i have made my crud and it works well. but when i add fields in the class. the crud does not work

2023-08-10 Thread 'Kasper Laudrup' via Django users
On 10/08/2023 23.07, Abdoulaye SENE wrote: i have to add fields to my class. because i have other fields.normal this problem has a solution If this problem has a normal solution, have you considered using that solution? I don't understand why you're looking for an abnormal solution if the