Re: i need to learn more on django

2023-08-11 Thread mazen Embaby
Hello to Python developers,
I created a Django template to start and boost your project with rich admin 
features that allow social auth providers and others
https://lnkd.in/d7sqtE46
feel free to use and contribute


#Python 

 #django 

 #djangodeveloper 

 #djangodevelopment 

#architecture 

 #software 

 #design 

 #softwaredesign 

 #softwarearchitecture 

 #softwarearchitecturaldesign 

#softwaredevelopment 

 #softwareengineer 

 #softwareengineering 

 #programmer 

 #programmers 

 #programminglanguage 

 #programming 

  #coding 

 #coder 

 #developer 

 #developers 

 #developercommunity 

 #developerlife 


On Wednesday, August 9, 2023 at 10:19:40 PM UTC+4 ivan harold wrote:

> there are a lot of websites that offer a complete tutorial for learning 
> such as w3schools.com.
> it is an opensource program so there are a lot of sites that offers 
> learning.
>
> On Friday, May 12, 2023 at 12:15:13 AM UTC+8 Sebastian Jung wrote:
>
>> P.s. youtube is not good because you can't copy source code from YouTube
>>
>> Naomi Gentle-idyee  schrieb am Fr., 5. Mai 2023, 
>> 18:48:
>>
>>> i just got started on django and though it looks complicated, i am told 
>>> i can learn it which i know its possible.so joining this community should 
>>> help me achieve that. 
>>>
>>> -- 
>>>
>> 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-users...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/a1d774fe-5f45-4bba-b55f-a781c4969facn%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/976a400d-5371-4f3d-abcf-ed0aa4dc26c5n%40googlegroups.com.


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

2023-08-11 Thread ASAMOAH EMMANUEL
Here are premium resources for you: https://t.me/+VXTu7RXQ47VlM2Q0

On Thu, Aug 10, 2023 at 8:36 PM 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> 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? 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
> 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 "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/3d1a0e32-5417-42c9-a2ec-c3caee1e24f7n%40googlegroups.com
> 
> .
>
 --
>>> 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-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/ddfe7754-9b56-4664-9154-84d26a51fc53n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAPxt_2XZnUk4cjnS%2BgdxAT6%3DuPsDb3qZqozCYx022ANA7uVpEw%40mail.gmail.com
>> 
>> .
>>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFX7pJ0zACL%3Dpv9ENfBcGpGDA2UpneP1rMZBRt43mOzHxVHAYA%40mail.gmail.com
> 
> .
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABFHQYwQjUOT8C0jad7m9c7vsqH48mXnVzXBdT0W%2BUOSAMZyqg%40mail.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-11 Thread Modou Aicha Diop
Try to delete the files that are in the migrations directory of your app
and do the migrations again
Le jeu. 10 août 2023 à 17:11, Abdoulaye SENE 
a écrit :

> 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
>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/77ad79f8-fe76-4d70-87ef-c35128075fd8n%40googlegroups.com
> 
> .
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMF4DA5YoPgM6XkFmmR8re0n4oX27P69LR2JqeTFheR3qUqefw%40mail.gmail.com.