#5 Django tutorials | Django Template Language | DTL

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ย. 2024
  • In this lecture we are discussing about:
    #1 DTL (Django Template Language)
    a) use of DTL in Django
    b) use dynamic content in Django
    #2 use of Jinja template example in Django.
    -- in views.py you can use html tag inside HttpResponse
    def home(request):
    -- it work fine to use tag inside HttpResponse
    -- but if you want a big page then you need to create a template
    -- and this has a dynamic page
    #1 DTL (Django Template Language)
    we have concept of DTL (Django Template Language)
    -- other option in django is jinja template
    --generally you created the app outside the app
    -- and then you can use it in your project
    -- you can create a folder with name templates outside the app folder
    Now in templates folder you can create a html file
    -- home.html
    Now you go to telusko folder inside change the settings.py
    -- in templates
    -- in DIRS change the path [os.path.join(BASE_DIR,'templates')],
    -- now you can use the template in your views.py
    a) Now you need to change the views.py
    -- from django.shortcuts import render
    -- from django.http import HttpResponse
    -- def home(request):
    -- return render(request,'home.html')
    b) now you get dynamic content
    -- now you want to pass some dynamic value from views.py
    inside this home function add JSON data
    -- def home(request):
    -- return render(request,'home.html'{'name','Navin'})
    -- go to templates and next to home.html
    -- changing content in json file will change the content in html file
    #2 use of Jinja template example in Django.
    -- this curly braces {{name}} simply means jinja templates or pattern
    -- we can do operation in jinja templates
    -- you can use jinja templates instead of DTL
    -- but DTL is by default in django
    Python Tutorials for beginner : bit.ly/2qfhUCp
    Django Tutorials : • #1 Django tutorials | ...
    Django is a high-level Python-based free and open-source web framework, which follows the model-view-template (MVT) architectural pattern.
    It is maintained by the Django Software Foundation (DSF).
    Django's primary goal is to ease the creation of complex, database-driven websites.
    Some well-known sites that use Django include the Public Broadcasting Service, Instagram, Mozilla, The Washington Times, Disqus, Bitbucket, and Nextdoor.
    In this video we will see:
    Django Tempalte Language
    Including HTML tags in a program
    Create Django Template to create dynamic webpage
    Editing settings.py file
    Github :- github.com/nav...
    Editing Machines & Monitors :
    amzn.to/2HA6ra8
    amzn.to/2VMBBPw
    amzn.to/2RfKWgL
    amzn.to/2Q665JW
    amzn.to/2OUP21a.
    Check out our website: www.telusko.com
    courses.telusko.com
    Instagram : / navinreddy20
    Twitter : / navinreddy20
    Facebook:
    Telusko : / teluskolearn. .
    Navin Reddy : / navintelusko
    Subscribe to our other channel:
    Navin Reddy : / @navinreddy
    Telusko Hindi : / @teluskohindi
    Donation & Support:
    Indian Payment : www.instamojo....
    PayPal Id : navinreddy20
    Patreon : navinreddy20

ความคิดเห็น • 397

  • @prg7dro
    @prg7dro 4 ปีที่แล้ว +223

    If anybody gets an error -> "os is not defined"
    Then, in the settings file type "import os" right after the path import line
    That will fix your error.

    • @jacklala3734
      @jacklala3734 4 ปีที่แล้ว +3

      Well thanks alot man

    • @ar7242
      @ar7242 4 ปีที่แล้ว +3

      Bro it is still not working any idea?? It is showing os.path.join is unsubscriptable

    • @nethmiwelgamvila
      @nethmiwelgamvila 4 ปีที่แล้ว +1

      Thanks❤️

    • @siddharthmodi5908
      @siddharthmodi5908 3 ปีที่แล้ว +1

      Thanks brother

    • @samarthbagga7688
      @samarthbagga7688 3 ปีที่แล้ว +2

      thank you, you are a good man

  • @felixkimutai8478
    @felixkimutai8478 ปีที่แล้ว +2

    This guy is good. The way he explains everything leaves you smiling. Thank you Telusko

  • @Mr-Multiplayer
    @Mr-Multiplayer 4 ปีที่แล้ว +14

    I wish this video was available when I was learning Django.
    I had to go through so much self-learning for just small and simple stuff like this.
    nicely explained.

    • @OasisFinder
      @OasisFinder 3 ปีที่แล้ว

      @vishal Can you please tell me your progress now, like you still in django?

    • @Mr-Multiplayer
      @Mr-Multiplayer 3 ปีที่แล้ว

      @@OasisFinder no I ending as MERN stack and spring boot developer.
      Django got discontinued😅

    • @OasisFinder
      @OasisFinder 3 ปีที่แล้ว

      @@Mr-Multiplayer Hahahah... Bro i am learning and hoping to get a job as a web developer , Can i ask why you stop using django?

    • @Mr-Multiplayer
      @Mr-Multiplayer 3 ปีที่แล้ว

      @@OasisFinder when I was learning there was very less content out there on django.
      Many didn't know. I had a person guiding me in spring boot so I switched.

    • @Mr-Multiplayer
      @Mr-Multiplayer 3 ปีที่แล้ว

      @@OasisFinder its really good complete it. All the best.

  • @MohammadMahadiHassain
    @MohammadMahadiHassain 4 ปีที่แล้ว +7

    Man, you are a gem. Lots of love from Bangladesh.

  • @sandeepgande
    @sandeepgande 3 ปีที่แล้ว +1

    I watched several tutorials on django and always got confused.
    This is more clear and precise. Thank you....

  • @architkumar1265
    @architkumar1265 5 ปีที่แล้ว +3

    Good sir.... I like ur way of teaching, you r only my way through whom I learnt python....Thanx a lot sir.....

  • @mysterioustech6030
    @mysterioustech6030 5 ปีที่แล้ว +24

    Sir please make a project after the competition of Django series...

  • @AniSeason
    @AniSeason 5 หลายเดือนก่อน

    saw other videos on django and stopped leaning it but the way u teach makes it interesting and makes me want to learn

  • @abdellasolomon6244
    @abdellasolomon6244 4 ปีที่แล้ว +4

    hey please tell me why template doesn't exist error is facing me and
    How to use os.path.join os is not defined

    • @yuvabhargavreddyraju7510
      @yuvabhargavreddyraju7510 7 หลายเดือนก่อน

      Bro iam also getting that, would you help me resolve that error😢

  • @dharamrajput5884
    @dharamrajput5884 4 ปีที่แล้ว +2

    Thanks a lot Navin Sir. This tutorial is really amazing. I have watched basic python tutorial and that was really awesome. After watching this series anyone can do programming in python.
    Once again thank you very much sir.

  • @princeonuigbo9447
    @princeonuigbo9447 3 ปีที่แล้ว +3

    I keep getting template error
    What do i do ?

  • @roshanthecuber227
    @roshanthecuber227 5 ปีที่แล้ว +21

    Thanks a lot sir, for taking the effort and making amazing video's for us! A big thank you from the bottom of my heart!

    • @prettycode4028
      @prettycode4028 5 ปีที่แล้ว +1

      why from the bottom of the heart?

  • @TeluguStatuss
    @TeluguStatuss 3 ปีที่แล้ว +6

    ERROR "OS IS NOT DEFINED"
    If you've started a new Django 3.1+ project and are using older tutorials or guides, it's likely to come across the following error on your command line:
    NameError: name 'os' is not defined
    Starting with Django 3.1, the startproject command generates a settings.py file that imports pathlib rather than os on the top line.
    The quick fix is to import os at the top of your settings.py file:
    # settings.py
    import os # new
    from pathlib import Path
    The better fix is learn more about how pathlib works and update your BASE_DIR, DATABASES, STATICFILES_DIRS, and other files to use the newer, modern approach.
    OR
    In settings.py file on the top you will see
    from pathlib import Path
    add (import os) command above it
    like this
    import os
    from pathlib import Path

  • @anamikakumari4311
    @anamikakumari4311 2 ปีที่แล้ว +9

    whoever is facing template error can add the path 'telusko/templates' in 'DIRS': [os.path.join(BASE_DIR,'telusko/templates')], you can easily see the path used for home.html in homepage with this label name 'django.template.loaders.filesystem.Loader' under 'Template-loader postmortem'

    • @noeldeepakpalle442
      @noeldeepakpalle442 2 ปีที่แล้ว +3

      yes....syntax should be like this DIRS': [os.path.join(BASE_DIR , 'app_name/templates')],
      app_name should be the same app_name under which templates were created.

    • @lakshmanreddy1148
      @lakshmanreddy1148 2 ปีที่แล้ว +1

      thank you , it works

    • @jeremiahabrams5183
      @jeremiahabrams5183 ปีที่แล้ว

      @Anamika Kumari....problem solved......thanks!🙏

    • @khushboodubey2647
      @khushboodubey2647 ปีที่แล้ว

      Thank you it really solved my problem i was so worried and irritated...thanks alot

    • @khushboodubey2647
      @khushboodubey2647 ปีที่แล้ว

      ​@@noeldeepakpalle442thank you so much it really resolved my error .....❤

  • @alakmarshafin9065
    @alakmarshafin9065 4 ปีที่แล้ว +2

    These are some Really productive sessions with a good pace 🔥

  • @krishnank5931
    @krishnank5931 3 ปีที่แล้ว +9

    raise TemplateDoesNotExist(template_name, chain=chain)
    django.template.exceptions.TemplateDoesNotExist: home.html
    i am getting the above error . please someone help me out. im cracking my head out to resolve that but it isnt executing . navin sir please help me out

    • @neelakantareddy5794
      @neelakantareddy5794 3 หลายเดือนก่อน +1

      bro i got same error

    • @bhanusai2948
      @bhanusai2948 3 หลายเดือนก่อน

      ​@@neelakantareddy5794 yeah bro just give "templates" in the settings page dont mention telusko/templates or your app_name/templates

  • @mistercakes
    @mistercakes 4 ปีที่แล้ว +4

    this is great. i had to check my speed to see if i left it on 1.5x. hahahahah. :)

  • @HIRAKJYOTI1
    @HIRAKJYOTI1 4 ปีที่แล้ว +10

    Exception Value:
    home.html

  • @mvishnupriya6940
    @mvishnupriya6940 4 ปีที่แล้ว +2

    It showing NameError: name 'os' is not defined

  • @thirumalai3913
    @thirumalai3913 5 ปีที่แล้ว +6

  • @SpeakAtoZ
    @SpeakAtoZ 4 ปีที่แล้ว

    You are a great teacher. I studied different programming languages from you. Thank you, sir.

  • @motivetomotivate6260
    @motivetomotivate6260 5 ปีที่แล้ว +1

    thank you sir we always get awesome learning from your videos.
    its your efforts , once again thanks a lot

  • @tejaswinich3523
    @tejaswinich3523 4 ปีที่แล้ว

    The way you r teaching is very good and easy to understand..... I hope u will keep videos on machine learning...

  • @nehapathak2276
    @nehapathak2276 4 ปีที่แล้ว

    Thanks Sir , You are really an awesome educator and by providing all these free courses you are doing great !!!!!!!

  • @kanakaraovaddi
    @kanakaraovaddi 5 ปีที่แล้ว +1

    Really thank you sir, you are all efforts for us.. its very clear understanding explanation. also helping us to practice.

  • @rekxspein
    @rekxspein 2 ปีที่แล้ว

    These tutorials, the way he present lectures is fucking amazing!!!

  • @vk7525
    @vk7525 ปีที่แล้ว

    What a man sir you are ? 🔥Full of positive vibes, I know that Django is not easy to learn. But you are making it easy for us. Thanks Guru🙏🏻

  • @manasmangalpattanaik3539
    @manasmangalpattanaik3539 4 ปีที่แล้ว

    Absolutely candid presentation. Very nice Mr. Navin.

  • @chaitralivaidya9211
    @chaitralivaidya9211 4 ปีที่แล้ว

    I am following the series, its really useful. Loving it so far.

  • @jitenpanchal4813
    @jitenpanchal4813 4 ปีที่แล้ว

    thanks navin sir for the tutorial. really helpful . your tutorials are one of the best in respective categories.

  • @gopinath1901
    @gopinath1901 4 ปีที่แล้ว +1

    Hey!!! Navin, Yes, I am enjoying your videos... Thank You...

  • @poojapawar5301
    @poojapawar5301 5 ปีที่แล้ว +1

    thanks a lot for sharing so useful videos ... after watching them actually one can understand whats going on in Django and what to do further

  • @kirteekumari3459
    @kirteekumari3459 4 ปีที่แล้ว +3

    Hey, I am having some issues while we are using render and request. I tried undoing everything i was working till the last video but every time i run this one, it says that template does not exist ! I tried finding answers on internet and but the solutions they had given were simply not working for me. Can you help me out and tell me the reason behind this @Telusko

    • @vishalyeole7176
      @vishalyeole7176 4 ปีที่แล้ว

      facing same issue

    • @abdellasolomon6244
      @abdellasolomon6244 4 ปีที่แล้ว

      yah I also

    • @shubhamswami3507
      @shubhamswami3507 4 ปีที่แล้ว +3

      it might be because of the templates folder location. If you have mentioned BASE_DIR then your templates folder should be out of your project folder, but as you are receiving this error means you have created the templates folder inside your project folder.

    • @megaQpa1
      @megaQpa1 3 ปีที่แล้ว

      @@shubhamswami3507 man thats exactly what was the issue! Thank you so much!

    • @sailakshmi6489
      @sailakshmi6489 2 ปีที่แล้ว

      @@shubhamswami3507 Thank you so much

  • @dailywebmoments
    @dailywebmoments 5 ปีที่แล้ว +1

    u are a great teacher sir ....love from #Pakistan

  • @kavyayadla8642
    @kavyayadla8642 4 ปีที่แล้ว

    Really thank you so much sir ,nearly i tried to make a project using django but every day im getting err but after so many tries i got output.Thank you so much sir.keep explain more nd more

  • @JoaoPaulo-ox6pr
    @JoaoPaulo-ox6pr 3 ปีที่แล้ว

    I have some difficulty with English because I'm Brazilian, but even so I managed to understand enough to be able to say "you helped me and conquered my like"

  • @tarkay2024
    @tarkay2024 4 ปีที่แล้ว

    i watch annoying ads without skip in exchange for ur service sir.

  • @rajanwalia4tech
    @rajanwalia4tech 5 ปีที่แล้ว +1

    Ek damm jhkaaas

  • @reksmeyok1957
    @reksmeyok1957 4 ปีที่แล้ว

    Amazing but simple explanation of django dynamic temple

  • @varunkrishnaKyathanpally
    @varunkrishnaKyathanpally 5 ปีที่แล้ว +1

    If you are getting TemplateNotFoundError then try removing the path, adding it and saving it in the Settings Also, refresh the server. It worked for me. Happy Learning :)

    • @heyno7498
      @heyno7498 ปีที่แล้ว

      didnt work for me, what should i do>?

  • @AhmedSamir-qc5lj
    @AhmedSamir-qc5lj 4 ปีที่แล้ว +7

    i followed your steps and it didn't work and keeps telling me "templates doesn't exist" !!!

    • @AyuSharma
      @AyuSharma 4 ปีที่แล้ว

      same

    • @arunreddybaddam
      @arunreddybaddam 4 ปีที่แล้ว

      same problem

    • @prasunshiwakoti2225
      @prasunshiwakoti2225 4 ปีที่แล้ว +3

      make sure that the template is in the same folder where calc is.

    • @anymatix491
      @anymatix491 4 ปีที่แล้ว +1

      @@prasunshiwakoti2225 thanks brother.

    • @MShanil619
      @MShanil619 4 ปีที่แล้ว +1

      @@prasunshiwakoti2225 lifesaver

  • @SantoshKPatel22
    @SantoshKPatel22 4 ปีที่แล้ว

    Amazing teaching skill sir. Love your teaching.

  • @royal9063
    @royal9063 4 ปีที่แล้ว +1

    I Feel relex after listening telusko starting music and welcome aliens, and too with mycodeschool creator voice. 😊😊

  • @anything_jara_hatke5237
    @anything_jara_hatke5237 4 ปีที่แล้ว

    Excellent videos sir, we are enjoying very much. Thanks a lot for creating this awesome stuff for us.

  • @minusdegreecamping3825
    @minusdegreecamping3825 4 ปีที่แล้ว

    Thanks Navin you are doing amazing work.

  • @sindhubasavanna1927
    @sindhubasavanna1927 5 ปีที่แล้ว +1

    I like ur video before watching!!! I am damn sure it will be good

  • @sathvikmalgikar2842
    @sathvikmalgikar2842 2 ปีที่แล้ว

    you are simply amazing sir!

  • @ayushmishra7214
    @ayushmishra7214 5 ปีที่แล้ว +2

    Good video

  • @TheGreyDenimJacketGuy
    @TheGreyDenimJacketGuy 3 ปีที่แล้ว

    wonderful video sir !! simple and smooth 👌

  • @vineethkumar2272
    @vineethkumar2272 5 ปีที่แล้ว

    Tq sir for starting Django series 👌👌👌

  • @satishpandu7601
    @satishpandu7601 5 ปีที่แล้ว

    Plz complete all videos as soon as possible 🙏
    And plz do video on http methods

  • @ViralIndian11
    @ViralIndian11 4 ปีที่แล้ว +1

    Thank you very much 😊❤️ for clearing my doubt

  • @NoobForReason
    @NoobForReason 4 ปีที่แล้ว +1

    Templatedoesnot exist error

  • @Salesforcevlocity
    @Salesforcevlocity 5 ปีที่แล้ว +6

    sir i find error in that and the error is template not found

    • @davindersinghwahla
      @davindersinghwahla 5 ปีที่แล้ว +9

      Go to your project you will find one folder inside it (whoes name will be same as of your project name) now inside that folder you will find your template folder , cut this template folder from here and paste it inside your project folder

    • @harshvalecha
      @harshvalecha 5 ปีที่แล้ว

      @@davindersinghwahla thankyou sir it was helpful

    • @AmitTiwari-wf1xj
      @AmitTiwari-wf1xj 5 ปีที่แล้ว

      Save that html file in htlml format not .py

    • @ashwaryatak2117
      @ashwaryatak2117 4 ปีที่แล้ว

      @@davindersinghwahla i have no template folder inside that folder which u are talking about..what is the solution for this now

    • @davindersinghwahla
      @davindersinghwahla 4 ปีที่แล้ว

      @@ashwaryatak2117 then try to find that template folder using search bar and after that follow same steps

  • @jaymars_comics507
    @jaymars_comics507 4 ปีที่แล้ว +3

    in the settings,i got an error (os.path.....)when i type os,a error pops up

    • @vish409
      @vish409 4 ปีที่แล้ว +3

      In settings
      import os

    • @ROHITKUMAR-wb1yx
      @ROHITKUMAR-wb1yx 4 ปีที่แล้ว +1

      @@vish409 thanku so much bro

    • @SHivam-id3ns
      @SHivam-id3ns 4 ปีที่แล้ว

      @@vish409 thank you bro but now i am getting secret key error😢

    • @dhanushhs4264
      @dhanushhs4264 4 ปีที่แล้ว

      @@vish409 thanks a lot

  • @KaibaSupreme
    @KaibaSupreme 4 ปีที่แล้ว

    than you for making these videos i like the way you explain things

  • @rajaramrane6827
    @rajaramrane6827 5 ปีที่แล้ว +2

    how to solve template does not exist error

  • @anjaneyulun2421
    @anjaneyulun2421 5 ปีที่แล้ว +1

    Sir HTML is mandatory? For learn Django

  • @TATAWAM4
    @TATAWAM4 4 ปีที่แล้ว +3

    Navin i am getting ImportError at server on the step 6:28

    • @prg7dro
      @prg7dro 4 ปีที่แล้ว +1

      If anybody gets an error -> "os is not defined"
      Then, in the settings file type """"import os"""""" right after the path import line
      That will fix your error ! :)
      NB: Do not include the quotation symbols while typing the import os function line

    • @ar7242
      @ar7242 4 ปีที่แล้ว

      @@prg7dro not working bro

    • @prg7dro
      @prg7dro 4 ปีที่แล้ว

      @@ar7242 what is the error ?

    • @ar7242
      @ar7242 4 ปีที่แล้ว

      @@prg7dro got the solution bro and the error was that os one

    • @prg7dro
      @prg7dro 4 ปีที่แล้ว

      @@ar7242 how did you fix it ?

  • @abdou7510
    @abdou7510 2 ปีที่แล้ว

    Good explanation Thanks

  • @raajeshmoorthy29
    @raajeshmoorthy29 5 ปีที่แล้ว

    Thank you Navin... Waiting for next

  • @victorystocktv
    @victorystocktv 4 ปีที่แล้ว

    2:50 we want to make it dynamic -> templates background is fixed, but data is changed.
    5:00 Django should know where you have all the templates
    -> settings.py에서 templates DIRS 바꾸는 작업
    -> 'DIRS': [os.path.join(BASE_DIR, 'templates')],
    Thank you

  • @ahmed_hamza7372
    @ahmed_hamza7372 4 ปีที่แล้ว +1

    for those getting temlpate not found error you have to save the home.html and settings file .

  • @itishreeparida9028
    @itishreeparida9028 4 ปีที่แล้ว +1

    Sir when I was writing in settings.py's template then error coming is os is not defined....do I need to import os

  • @tusharshardul3480
    @tusharshardul3480 4 ปีที่แล้ว +1

    Hello sir
    I'm getting pylint important error ,how do i solve this .
    Btw your teaching is awesome

  • @fazalurrehman1348
    @fazalurrehman1348 5 ปีที่แล้ว

    why we are returning html page since django is backend framework it is used to create api

  • @avinashsinghking5669
    @avinashsinghking5669 4 ปีที่แล้ว +4

    Sir I m getting TemplateDoesnotExist error continuously

    • @bhargavp6345
      @bhargavp6345 4 ปีที่แล้ว +1

      Create templates in your app and check the path of html is correct or not
      Careful with spelling

    • @ar7242
      @ar7242 4 ปีที่แล้ว

      In the dirs type [r'the path of file by going in the folder and using properties'] it will definetely work as it worked in my case

    • @theothersaint
      @theothersaint 3 ปีที่แล้ว +3

      Maybe I'm late, but I've had this same error.
      Problem was that I created the templates folder in the telusko subdirectory.
      The templates folder should be on the same level as calc and telusko.

  • @ranjanigopi2505
    @ranjanigopi2505 3 ปีที่แล้ว +1

    If you get an error at the home page saying TemplateDoesNotExist at/ then go to the settings.py file and at INSTALLED_APPS=[......, 'your_app_name',] (You just need to add the name of the app in the INSTALLED_APPS field)

    • @heyno7498
      @heyno7498 ปีที่แล้ว

      did it but didn't work

  • @uttaradisaichaitanya8034
    @uttaradisaichaitanya8034 4 ปีที่แล้ว +1

    i'm getting an exception..template doesnot exist...what can i do know

    • @manasijadhav39
      @manasijadhav39 3 ปีที่แล้ว

      The 'template' folder may have been created under the calc or telusko folder, you have to create it under the main folder and then home.html file in it

  • @ishwarshelke128
    @ishwarshelke128 3 ปีที่แล้ว

    thanks a lot for this series sir

  • @dhurbakarki2872
    @dhurbakarki2872 4 ปีที่แล้ว +1

    Hello sir, I am a beginner in this Django learning and I could not get result like you got Hello World!!!! and in my case its saying that my template does not exist

    • @ujwaladivate7444
      @ujwaladivate7444 4 ปีที่แล้ว

      same problem
      if u got solution please suggest

    • @AdityaSharma-sx8we
      @AdityaSharma-sx8we 3 ปีที่แล้ว

      @@ujwaladivate7444 import os after :-from pathlib import Path
      doest forget to save (ctrl +s)
      i hope it works !

  • @ajit287
    @ajit287 5 ปีที่แล้ว

    Thank you sir... For amazing series

  • @perfectsolutions9728
    @perfectsolutions9728 4 ปีที่แล้ว +1

    Well explained sir. But i m getting error as TemplateDoesNotExist. How to resolve pls suggest

    • @princeonuigbo9447
      @princeonuigbo9447 3 ปีที่แล้ว

      Me too
      Have solved yours
      If yes ,
      How did you do it

  • @pradeepch7051
    @pradeepch7051 4 ปีที่แล้ว

    Awesome tutorials, thank u

  • @waqar8544
    @waqar8544 4 ปีที่แล้ว +1

    your teaching is nice but who is kiran?

  • @brijeshyadav844
    @brijeshyadav844 4 ปีที่แล้ว

    Great job 👏👏

  • @sudhamshreddy2756
    @sudhamshreddy2756 3 ปีที่แล้ว +1

    in urls iam getting no module named calc how to do with it

  • @farazsiddiqui6999
    @farazsiddiqui6999 4 ปีที่แล้ว

    I got everything right thanks sir.

  • @debasishdutta9073
    @debasishdutta9073 4 ปีที่แล้ว

    Liked you teaching technic

  • @varshaaddepalli4844
    @varshaaddepalli4844 4 ปีที่แล้ว +1

    Sir, I did the same as you did but,when I run the server the page is blank with white screen,can you please help me out,.

  • @All-Inclusive_Corner
    @All-Inclusive_Corner ปีที่แล้ว

    very nice

  • @ananyamahapatra6597
    @ananyamahapatra6597 4 ปีที่แล้ว +2

    I am in Love with you🥰
    My Respect for you from the core of my soul😊🥳

  • @__Fahad-yp3pl
    @__Fahad-yp3pl 4 ปีที่แล้ว

    Thanks a lot dear sir..Sir please make a project of Django series.

  • @anshudas4929
    @anshudas4929 3 ปีที่แล้ว +1

    it's showing template doesn't exist at home.html

  • @suprotikdutta6693
    @suprotikdutta6693 4 ปีที่แล้ว

    I really liked it . thank you

  • @alanskusumbu1047
    @alanskusumbu1047 3 ปีที่แล้ว

    Super sir!!!!

  • @alshagoulehamedoubathousha5284
    @alshagoulehamedoubathousha5284 3 ปีที่แล้ว

    Navin in installed app we have to add 'calc' otherwise helloworld not appears.....can you make some attention and add between some video about' ' import os error ' and 'templates does not exit error'

  • @mahfuzurrahman4517
    @mahfuzurrahman4517 2 ปีที่แล้ว

    Great

  • @abhi0098-d1e
    @abhi0098-d1e 4 ปีที่แล้ว

    ,I'm getting the results but at CMD , i'm getting this ERROR -
    An established connection was aborted by the software in your host machine
    EDIT* - I tried different browser and it solved my problem . i know its not the best sollution but atleast it works 👍

  • @bharatjagoar6092
    @bharatjagoar6092 3 ปีที่แล้ว

    Sir could not understand that name what u have done with that, what I meant is if I want the name of myself I can edit htlm code in home. Html, why u have created a dictionary???

  • @hitanshimehta430
    @hitanshimehta430 4 ปีที่แล้ว

    Thank you so much for video!!

  • @anirbansarkar6690
    @anirbansarkar6690 5 ปีที่แล้ว +1

    Why the path u set as os. path????

  • @FFR3IZ4ITt
    @FFR3IZ4ITt 14 วันที่ผ่านมา

    Cool txs

  • @Himax007
    @Himax007 3 ปีที่แล้ว

    Error - name 'os' is not defined ?
    Add "ᶦᵐᵖᵒʳᵗ ᵒˢ" at the very first line(1) of settings .py file
    That's it, write it w/o quotation mark & save it.

  • @ajuthomas5243
    @ajuthomas5243 2 ปีที่แล้ว

    why didnt get output when give bold tag instead of heading tag?

  • @gouravinsan1339
    @gouravinsan1339 5 ปีที่แล้ว +1

    Nice intro music

  • @potojumuralidhar9128
    @potojumuralidhar9128 4 ปีที่แล้ว

    Sir in this I didn't get the html page content to the web browser what is the problem

  • @shaikshanawaz1064
    @shaikshanawaz1064 2 ปีที่แล้ว

    hi there you are superrr

  • @codecrafters186
    @codecrafters186 4 ปีที่แล้ว

    'function' object has no attribute 'META' sir this error is coming when going through the way illustrated above by u

  • @sandippaul4172
    @sandippaul4172 4 ปีที่แล้ว

    Sir i am facing a problem which is telling that the name 'os' is not defined