#django

Django ORM's Hidden Magic: Advanced Uses and Techniques, Part-1

I'm assuming you already know what Django is and what is ORM. If not:- Django is a high-level web framework for building web applications quickly and with less code. It is written in Python and follows the Model-View-Template (MVT) architectural pattern. …


Django ORM's Hidden Magic: Advanced Uses and Techniques, Part-2

Welcome back for the 2nd part, check out the first one too, as we'll be using the same models we defined there. If you're familiar with Question and Choice models in Django's official documentation that'll work too. Let's continue Relationships Relationsh…