Mazhar Solkarmazharsolkar.hashnode.dev·Jun 6, 2024URL and Rendering HTML in DjangoURL URL's can be considered as routes in the context of web application. example: httP://www.mazhar.com/, http://www.mazhar.com/about, http://www.mazhar.com/contact URL's are defined inside urls.py file. Each URL is mapped with specific view funct...Python
Rhythm Rawatrhythmblogs.hashnode.dev·Jan 7, 2024Understand the MVT Framework in Django and how it differs from MVC in backend developmentWhen it comes to web development frameworks, the Model-View-Controller (MVC) architecture is very crucial for organizing code and maintaining separation. However, Django, a popular web framework for Python, introduces a slight twist with its Model-Vi...1 like·42 readsDjango
Thomas Cherickalthomascherickal.hashnode.dev·May 27, 2023Unveiling the Power of Django's MVT ArchitectureIntroduction Django, a widely-used and highly-regarded Python web framework, adheres to the Model-View-Template (MVT) architectural pattern. This design pattern offers a well-organized and systematic approach to constructing web applications, placing...Python
Nikhil Akkinikhilakki.in·Apr 1, 2023Web frameworks in Python - DjangoDjango is a high-level, open-source Python web framework that allows developers to quickly and efficiently build web applications. It follows the Model-View-Controller (MVC) architectural pattern and emphasizes the concept of "don't repeat yourself" ...1 like·42 readsPython DevelopmentPython
Akolade Olanipekunakolade.hashnode.dev·Feb 13, 2023Django MVT: An Introduction to the Model-View-Template Architecture of a Django AppMVT/ MTV is an essential concept in Django which is very similar to MVC as used on other frameworks. MVT in Django is a design pattern used to organize components of a Web App. MVT architecture consists of three components- Model, View, and Template....48 readsDjango Basics: Everything You need to know as a NewbiePython
Samuel Aderibigbe savviesammie.hashnode.dev·Dec 19, 2022Django Web Framework and its MVT architectureMy first experience with Django was very challenging, maybe because I needed to use this web framework to develop an e-commerce website quickly in one of my projects. I’ve been writing in python for a while now and then I thought Django would be easy...31 readsDjango
Rishabh Kumar Bahukhandirishabhdev.hashnode.dev·Dec 3, 2022Structure of Django ApplicationIntroduction to Django Django is one of the most popular backend frameworks out there in the market. It is written in python. It is known for its development speed. A project in Django can be up and running in a minimal amount of time. It has a very ...11 likes·163 readsLearning DjangoDjango
Govinda Jamkateliamgovinda.hashnode.dev·Sep 9, 2022MVC vs MVT architecture!!!During the process of software development, a developer has to face lots of difficulties and problems. These issues need to be handled with some sort of mechanism to achieve the goal easily. And there’s the software design pattern that comes into the...10 likes·231 readsPython