17. Django Report card Project | Django Tutorial

Sdílet
Vložit
  • čas přidán 11. 04. 2023
  • 17. Django Report Card Project | Django Tutorial - Django Report card project. This is a Django tutorial project where we will be building a student report card project where will be seeing the advance concepts of Django.
    🔥𝐁𝐞𝐜𝐨𝐦𝐞 𝐀 𝐑𝐨𝐜𝐤𝐬𝐭𝐚𝐫 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐞𝐫 🚀
    Newton School's 𝐅𝐮𝐥𝐥 𝐒𝐭𝐚𝐜𝐤 𝐂𝐨𝐮𝐫𝐬𝐞 𝟐𝟎𝟐𝟐 - bit.ly/Abhijeet_up
    Newton School Official WhatsApp Support Number: +91 6362 331 200
    🔥Check these videos 🚀
    Web development project - • Create THESE AWESOME P...
    Best AI/ML projects - • BEST AI/ML PROJECT - C...
    Non-tech to Tech - • Journey from NON-TECH ...
    Javascript vs Python - • JAVASCRIPT VS PYTHON: ...
    Best backend framework - • Top Backend framework ...
    DSA projects - • 4 projects to Master D...
    Learn web development for free - • How to Learn Web devel...
    Get remote jobs - • How to get a remote de...
    Full stack python developer - • Video
    Top programming language - • Top Programming langua...
    Biggest python update - • PyScript | The Biggest...
    Python roadmap - • Complete Python Roadma...
    Node Js Vs Django - • NodeJs Vs Django Vs La...
    Best c ++ Books - • Best books to learn Ma...
    Best Project ideas - • Best projects ideas fo...
    Create flutter app in Python - • Create FLUTTER app wit...
    -----------------------------------------------------------------------------------
    𝐍𝐞𝐰𝐭𝐨𝐧 𝐒𝐜𝐡𝐨𝐨𝐥 𝐎𝐟𝐟𝐢𝐜𝐢𝐚𝐥 𝐖𝐞𝐛𝐬𝐢𝐭𝐞
    📌𝐖𝐞𝐛𝐬𝐢𝐭𝐞: bit.ly/NSYTWebsite
    📌𝐃𝐢𝐬𝐜𝐨𝐫𝐝: bit.ly/youtube-discord
    📌𝐋𝐢𝐧𝐤𝐞𝐝𝐈𝐧: bit.ly/NSYTLinkedin
    📌𝐈𝐧𝐬𝐭𝐚𝐠𝐫𝐚𝐦: bit.ly/NSYTInstagram
    📌𝐅𝐚𝐜𝐞𝐛𝐨𝐨𝐤: bit.ly/NSYTfacebook
    Connect with Abhijeet
    ✅ Instagram - / _abhijeetgupta
    ✅ Linkedin - / gupta-abhijeet
    ✅ Telegram - t.me/code_keen
    ✅ Second channel Link - • Django Soft Delete in ...
    ------- 𝐀𝐛𝐨𝐮𝐭 𝐍𝐞𝐰𝐭𝐨𝐧 𝐒𝐜𝐡𝐨𝐨𝐥 -------
    🔵NEWTON SCHOOL is an online Edtech company providing the highest-rated Certificate Course in
    -- Full-Stack Development - Certificate Course
    -- Master's in Computer Science - MIA University
    -- Master's in Data Science - IU University
    for professionals, graduates, and women.
    🌕Newton School is building a neo-university, it is also redirecting education towards a skill-oriented paradigm, wherein leading organizations and startups would be able to hire the right kind of talent in multiple organizational layers. With Newton School’s students already earning a cumulative salary of 100+ crores, Newton School will be able to en-skill and up-skill millions of tech careers and bring the conversation of employability to the podium of the world.
    - - - - - - - - - - - - - -
    If you're reading this far down, hello, you look nice today :)
    🔵To watch more videos on programming, Data Structures, Android Development, Data Science, C++, Java, React, subscribe to our channel.
    - - - - - - - - - - - - - -
    If you're reading this far down, hello, you look nice today :)

Komentáře • 16

  • @IjazAhmad-wv9qx
    @IjazAhmad-wv9qx Před 10 měsíci

    lovely content bro thanx for sharing

  • @ayushmantiwari6441
    @ayushmantiwari6441 Před rokem +1

    Great Video !

  • @muhmmadsaadnaseem5101

    Great content

  • @saurabhbarasiya4721
    @saurabhbarasiya4721 Před rokem +2

    Please complete this series as soon as possible

  • @KanpurSwagger
    @KanpurSwagger Před rokem

    ❤❤❤

  • @im_alok
    @im_alok Před rokem +1

    sir plz add complexities such as teachers to students association's, customized report of each student on power Bi like dashboard ,new admission dashboards and several other functions.

  • @techiefriendtamil1289
    @techiefriendtamil1289 Před rokem +1

    Please upload next video as soon as possible

  • @jaiswaltechnicalmentor1575
    @jaiswaltechnicalmentor1575 Před 3 měsíci

    AAP btao Direct terminal s project nahi kar saktey without cmd k

  • @deepakrajput8693
    @deepakrajput8693 Před rokem

    bro please make a new video of python django job’s hiring
    please 🙏

  • @armanjavid2610
    @armanjavid2610 Před 12 dny

    bro why r u using only single project use different projects please

  • @Abhinandan_007
    @Abhinandan_007 Před 11 měsíci

    Can you please provide the complete source code?

  • @user-qc6fi5rk2c
    @user-qc6fi5rk2c Před 10 měsíci

    where is sourcery link???

  • @TheLifeTutorial1
    @TheLifeTutorial1 Před 7 měsíci

    bhai please help me:
    def create_subject_marks(n):

    try:
    student_objs = Student.objects.all()
    for student in student_objs:
    subjects = Subject.objects.all()
    for subject in subjects:
    SubjectMarks.objects.create(
    subject = subject,
    student = student,
    marks = random.randint(0 , 100)

    )
    except Exception as e:
    print(e)
    ... create_subject_marks(100)
    File "", line 16
    create_subject_marks(100)
    ^^^^^^^^^^^^^^^^^^^^
    SyntaxError: invalid syntax
    >>> create_subject_marks(100)
    'QuerySet' object is not callable
    >>>

    • @user-gr2dx6is5t
      @user-gr2dx6is5t Před dnem

      use this
      def create_subject_marks() -> None:
      try:
      student_objs = Student.objects.all()
      subject_objs = Subject.objects.all()
      for student in student_objs:
      for subject in subject_objs:
      SubjectMarks.objects.create(
      student=student,
      subject=subject,
      marks=random.randint(0, 100),
      )
      except Exception as e:
      print(e)
      now run create_subject_marks() to create marks

  • @R.ATechSkill
    @R.ATechSkill Před 4 měsíci

    UNIQUE constraint failed: vege_subjectmarks.student_id, vege_subjectmarks.subject_id I am getting this erro please, help me to resolve it

    • @user-gr2dx6is5t
      @user-gr2dx6is5t Před dnem

      qs = StudentId.objects.values("student_id").annotate(Count("student_id"))
      >>> qs.order_by("-student_id__count")
      run these command you can see if there are duplicate student id's
      resolve this and you should be good to go