Latest published stories in Django - DeveloperSites
1
likes
spam Like Dislike

Django Model View Template (MVT) Overview - onlinetutorialspoint

published 23 days, 4 hours, 44 minutes ago posted by DhruvDhruv 33 days, 31 minutes ago
Tuesday, March 7, 2023 12:53:20 PM GMT Saturday, February 25, 2023 5:06:10 PM GMT
The Django Model-View-Template (MVT) architecture is a software design pattern that is commonly used in Django web applications. This pattern separates the application's logic into three separate components: Model, View, and Template. This architecture allows developers to create clean, organized, and maintainable code, which makes it easier to add new features and fix bugs. Model: The Model component represents the data structure of the application. This component is responsible for creating, reading, ... (more)
category: Django | clicked: 1 | comment | | source: www.onlinetutorialspoint.com
1
likes
spam Like Dislike

Mastering URL Routing in Django: A Comprehensive Guide

published 23 days, 4 hours, 44 minutes ago posted by DhruvDhruv 33 days, 33 minutes ago
Tuesday, March 7, 2023 12:53:20 PM GMT Saturday, February 25, 2023 5:03:46 PM GMT
The blog "How to Perform URL Routing in Django" provides a comprehensive overview of how to set up URL routing in a Django web application. URL routing is an essential component of any web application, as it allows users to navigate between pages and access specific content. The blog starts by introducing the concept of URL routing and its importance in web development. It then goes on to explain how URL routing works in Django, which involves defining URL patterns and matching them with view functions.... (more)
category: Django | clicked: 0 | comment | | source: www.educative.io
1
likes
spam Like Dislike

Mastering Django Exception Handling: Your Comprehensive Guide

published 36 days, 49 minutes ago posted by DhruvDhruv 43 days, 22 hours, 57 minutes ago
Wednesday, February 22, 2023 4:47:57 PM GMT Tuesday, February 14, 2023 6:40:22 PM GMT
Django is a popular web framework written in Python. It makes web development easier and more efficient by providing a set of pre-built components for building web applications. As with any software, Django may encounter errors during runtime, and to handle these errors, it has an exception hierarchy. The Django exception hierarchy defines a set of error classes that are raised when an error occurs during the execution of a Django application. These error classes are organized into a hierarchy, with the... (more)
category: Django | clicked: 0 | comment | | source: docs.djangoproject.com
1
likes
spam Like Dislike

Navigate the World of Django with Ease: A Comprehensive Guide to URL Mapping

published 37 days, 4 hours, 38 minutes ago posted by DhruvDhruv 45 days, 14 minutes ago
Tuesday, February 21, 2023 12:58:30 PM GMT Monday, February 13, 2023 5:23:11 PM GMT
The blog post "Django URL: Understanding the Basics of URL Mapping in Django" explains the concept of URL mapping in Django, a popular web framework for building web applications in Python. URL mapping is the process of mapping URLs to views in Django, where a view is a Python function that handles a request from a user and returns a response. The post begins by explaining the basic structure of URLs in Django and how they are used to handle requests from users. It also explains the role of the URL disp... (more)
category: Django | clicked: 0 | comment | | source: www.educba.com
1
likes
spam Like Dislike

Mastering the Art of Django For Loop: A Complete Guide

published 54 days, 4 hours, 8 minutes ago posted by DhruvDhruv 60 days, 5 hours, 44 minutes ago
Saturday, February 4, 2023 1:28:43 PM GMT Sunday, January 29, 2023 11:52:36 AM GMT
This blog post is about the for loop tag in Django, a popular web development framework for Python. The for loop tag is used to iterate over a collection of objects, such as a list or a queryset, and display the contents of each object. The article begins by explaining how to use the for loop tag in a Django template, including how to create a for loop and how to access variables within the loop. The post also covers some of the more advanced features of the for loop tag in Django, such as using the for... (more)
category: Django | clicked: 0 | comment | | source: www.w3schools.com
1
likes
spam Like Dislike

Unleashing the Power of For Loops in Django Templates: Tips and Tricks for Dynamic Web Pages

published 54 days, 4 hours, 8 minutes ago posted by DhruvDhruv 61 days, 20 minutes ago
Saturday, February 4, 2023 1:28:43 PM GMT Saturday, January 28, 2023 5:17:06 PM GMT
The blog post explains how to use the for loop in Django templates, a popular Python web framework. It starts by explaining the basic syntax of the for loop and how to use it to iterate over lists and dictionaries. The post also shows how to access the current item and the index of the current item within the for loop. The post then goes on to explain how to use the for loop in conjunction with other template tags, such as the if tag, to create more complex logic within the template. It also shows how t... (more)
category: Django | clicked: 0 | comment | | source: www.educative.io
1
likes
spam Like Dislike

Mastering Templates, Tags, and Filters in Django: Unlocking the Power of Dynamic Web Page

published 54 days, 4 hours, 8 minutes ago posted by DhruvDhruv 61 days, 27 minutes ago
Saturday, February 4, 2023 1:28:43 PM GMT Saturday, January 28, 2023 5:10:25 PM GMT
The blog post discusses how to use templates, tags, and filters in Django, a popular Python web framework. Templates are a way to define the structure of a web page and separate the presentation logic from the business logic. Tags and filters are used within templates to add dynamic functionality to the pages. The post explains how to create a template in Django and how to use variables and basic logic in templates. It also shows how to use template tags, which are small pieces of code that can be used ... (more)
category: Django | clicked: 0 | comment | | source: realpython.com
1
likes
spam Like Dislike

9 Django Tips for Working with Databases

published 466 days, 53 minutes ago posted by matthewpomarmatthewpomar 475 days, 3 hours, 23 minutes ago
Sunday, December 19, 2021 4:44:10 PM GMT Friday, December 10, 2021 2:14:17 PM GMT
ORMs offer great utility for developers but abstracting access to the database has its costs. Developers who are willing to poke around the database and change some defaults often find that great improvements can be made. (more)
category: Django | clicked: 1 | comment | | source: hakibenita.com
tags: ORM, Performance, PostgreSQL, SQL
1
likes
spam Like Dislike

How to Create an Index in Django Without Downtime

published 466 days, 53 minutes ago posted by matthewpomarmatthewpomar 475 days, 4 hours, 13 minutes ago
Sunday, December 19, 2021 4:44:10 PM GMT Friday, December 10, 2021 1:23:53 PM GMT
In this step-by-step Python tutorial, you'll get a solid understanding of the limitations of Django migrations by tackling a well known problem: creating an index in Django with no downtime. (more)
category: Django | clicked: 1 | comment | | source: realpython.com
tags: ORM, PostgreSQL, SQL