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

Customize Your Django Forms with Unique Field Widgets!

published 325 days, 17 hours, 32 minutes ago posted by DhruvDhruv 332 days, 5 hours, 55 minutes ago
Monday, May 8, 2023 4:34:27 PM GMT Tuesday, May 2, 2023 4:10:57 AM GMT
The article "Django Form Field Custom Widgets" from GeeksforGeeks explains how to create custom widgets in Django forms to allow for more flexibility and customization in the way form fields are displayed to users. The article begins by explaining what widgets are in Django, which are essentially HTML input elements that Django uses to render form fields. Widgets can be customized by extending existing widgets or creating entirely new ones. Customizing widgets allows for more control over the look and f... (more)
category: Django | clicked: 0 | comment | | source: www.geeksforgeeks.org
1
likes
spam Like Dislike

Mastering Django Redirects: The Ultimate Guide

published 325 days, 17 hours, 32 minutes ago posted by DhruvDhruv 332 days, 6 hours, 11 minutes ago
Monday, May 8, 2023 4:34:27 PM GMT Tuesday, May 2, 2023 3:55:09 AM GMT
The blog post "Django Redirects" on javatpoint.com explains how to use the redirect function in the Django web framework. The redirect function is used to redirect users from one URL to another URL. The blog begins by providing a brief introduction to Django and its features, including its powerful URL routing system. It then moves on to explain the redirect function in detail. The redirect function is a built-in Django function that allows you to redirect a user to a different URL. The blog post expla... (more)
category: Django | clicked: 0 | comment | | source: www.javatpoint.com
1
likes
spam Like Dislike

Customize Your Django Model Forms: A Styling Guide

published 325 days, 17 hours, 32 minutes ago posted by DhruvDhruv 332 days, 15 hours, 6 minutes ago
Monday, May 8, 2023 4:34:27 PM GMT Monday, May 1, 2023 6:59:59 PM GMT
The blog post "Django: Style the Forms created by Model Forms" is a tutorial on how to customize the styling of forms created using Django's Model Forms feature. Model Forms is a powerful tool that automatically generates forms based on the fields of a model in Django. However, the default styling of these forms may not always match the design of a website or application. The blog post begins by explaining the basic concepts of Model Forms in Django. It then moves on to describe the different methods av... (more)
category: Django | clicked: 0 | comment | | source: studygyaan.com
1
likes
spam Like Dislike

Unpacking Django's MVT Architecture: Separating Concerns and Streamlining Web Development

published 325 days, 17 hours, 32 minutes ago posted by DhruvDhruv 332 days, 15 hours, 10 minutes ago
Monday, May 8, 2023 4:34:27 PM GMT Monday, May 1, 2023 6:56:25 PM GMT
The Model-View-Template (MVT) architecture is a widely-used design pattern in web development frameworks, such as Django. This architecture is used to separate the concerns of data management, user interface, and presentation logic. Django is a popular web framework written in Python that uses MVT as its underlying architecture. The MVT architecture consists of three components: Model, View, and Template. The Model component is responsible for managing the data of the application. It interacts with the ... (more)
category: Django | clicked: 0 | comment | | source: www.makeuseof.com
1
likes
spam Like Dislike

Mastering User Interactions: A Beginner's Guide to Django Sessions

published 325 days, 17 hours, 32 minutes ago posted by DhruvDhruv 332 days, 15 hours, 15 minutes ago
Monday, May 8, 2023 4:34:27 PM GMT Monday, May 1, 2023 6:50:52 PM GMT
The article titled "Django Sessions" is a tutorial aimed at beginner to intermediate Django developers who want to learn about how to use sessions in their web applications. Sessions are an essential part of web development that allows developers to keep track of user interactions and data across multiple pages or visits to the website. The article begins by explaining the concept of sessions in Django, which are essentially a way to store information about a user's interaction with a website between pa... (more)
category: Django | clicked: 0 | comment | | source: www.tutorialspoint.com
1
likes
spam Like Dislike

Django Model View Template (MVT) Overview - onlinetutorialspoint

published 387 days, 21 hours, 13 minutes ago posted by DhruvDhruv 397 days, 17 hours 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 387 days, 21 hours, 13 minutes ago posted by DhruvDhruv 397 days, 17 hours, 2 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 400 days, 17 hours, 18 minutes ago posted by DhruvDhruv 408 days, 15 hours, 26 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 401 days, 21 hours, 8 minutes ago posted by DhruvDhruv 409 days, 16 hours, 43 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 418 days, 20 hours, 37 minutes ago posted by DhruvDhruv 424 days, 22 hours, 14 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 418 days, 20 hours, 37 minutes ago posted by DhruvDhruv 425 days, 16 hours, 49 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 418 days, 20 hours, 37 minutes ago posted by DhruvDhruv 425 days, 16 hours, 56 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 830 days, 17 hours, 22 minutes ago posted by matthewpomarmatthewpomar 839 days, 19 hours, 52 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 830 days, 17 hours, 22 minutes ago posted by matthewpomarmatthewpomar 839 days, 20 hours, 42 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