What are Views in Django?
Describe URL Mapping
What are Function-Based Views?
What are Class-Based Views?
*Class-based views are Python classes that encapsulate the logic for handling web requests.
* Class-based views offer reusable and extensible components for handling common web patterns.
What are Template Basics?
*Templates in Django are HTML files that define the structure and presentation of web pages.
* Django templates allow dynamic content using template tags and filters.
- Template tags are enclosed in {% %} and execute logic within templates.
How does the Render function work?
Describe Template Inheritance