Re: topics to master

2024-09-02 Thread codesheets codeshet
You can to begin in django python on CBV and FBV (Class Based Views and Function Based Views), login, logout etc Le lun. 2 sept. 2024 à 18:34, Swarup Selvaraj a écrit : > I recommend Corey M Schaffer tutorial series > https://www.youtube.com/watch?v=UmljXZIypDc > > On Monday 2 September 2024 at

Salutation

2024-09-02 Thread codesheets codeshet
Bojour -- 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

Re: topics to master

2024-09-02 Thread codesheets “Codeshester” codeshet
I'd be glad to help you with your Django learning journey! Here are some key topics to delve into to strengthen your understanding and become proficient in Django development: *Core Concepts:* - *Views:* Understand how to create and structure views to handle HTTP requests and render re

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: IMPORT PROBLEM

2024-09-02 Thread Talha Malik
Is views.py in the same folder of urls.py or is views.py in the parent folder of urls folder? On Mon, 2 Sept 2024, 12:44 pm Heman Okumbo, wrote: > Homeland is my project directory,there is another folder in the same > directory with the same name,my apps directory is named land and its where > i

Re: IMPORT PROBLEM

2024-09-02 Thread Talha Malik
Send the screenshot of folder structure, in which file you are importing and how you are importing? On Mon, 2 Sept 2024, 11:46 am Augusto Domingos, < augustodomingosva...@gmail.com> wrote: > > can you send some screenshots showings how you are importing the view? > Em segunda-feira, 2 de setembro

Re: IMPORT PROBLEM

2024-09-02 Thread Prashanth Patelc
Use like this path('pen/',views.land,name='pen'), On Mon, Sep 2, 2024, 1:14 PM Heman Okumbo wrote: > Homeland is my project directory,there is another folder in the same > directory with the same name,my apps directory is named land and its where > i am trying to import views from. > I get the b

Re: IMPORT PROBLEM

2024-09-02 Thread Heman Okumbo
Thanks for the tip,what can be the problem if Django is not importing a function from the app directory ie from land import views,the function in views is pen, error traceback states there is no pen function in views. On Mon, Sep 2, 2024, 12:12 Augusto Domingos wrote: > Good... it's just a path

Re: IMPORT PROBLEM

2024-09-02 Thread Augusto Domingos
Good... it's just a path issue. Instead of doing '*from . import views*', try this: '*from {app_name} import views*'. In your case, you have an app named *'land*', so it would look something like this: '*from land import views*'. You need to specify the app name because of the directory str