Skip to content

ZeroToByte

  • Home
  • Python
  • Django

django

How to use the Django create superuser command

October 20, 2022 by Erik Matosevic

When it comes to managing the site you’re developing, Django includes a powerful admin interface that lets you interact with …

Read more

Categories Django

How to use Django order_by?

September 12, 2022September 11, 2022 by Manuel Matosevic

Sorting data stored in the database can often be crucial for your application. Luckily, Django has integrated methods over querysets …

Read more

Categories Django

Django Reverse URL – reverse() function

May 28, 2022 by Erik Matosevic

Managing URLs in Django can become very cumbersome if you don’t employ the right tactic in the beginning. Imagine that …

Read more

Categories Django

Django Redirect Explained

May 26, 2022 by Erik Matosevic

When building a Django web application, sometimes you’ll need to redirect a client request from the requested URL address to …

Read more

Categories Django

HttpResponse Django – HTTP Response Explained with Examples

April 18, 2022 by Erik Matosevic

Django is a web application framework which means it is heavily used in scenarios that include receiving and sending HTTP …

Read more

Categories Django

Django shortcuts – get_or_create and update_or_create

March 19, 2022 by Manuel Matosevic

Django shortcuts, get_or_create(), and update_or_create() methods make our web application development even faster. Django implemented these methods due to easier …

Read more

Categories Django

How to check Django version?

March 9, 2022 by Manuel Matosevic

Django is one of the most popular framework for creating web applications. Its initial release was back in 2005, and …

Read more

Categories Django

How to use Django select_related and prefetch_related?

March 7, 2022March 7, 2022 by Manuel Matosevic

Django ORM (object-relational mapping) is a tool that helps us make queries on relational databases using Python code that is …

Read more

Categories Django

Django Choices Best Practices

March 5, 2022March 2, 2022 by Manuel Matosevic

Models in Django define entities and their fields (columns) in the database. These columns represent the Django Field class with …

Read more

Categories Django

Django Multiple Databases Setup

February 22, 2022 by Manuel Matosevic

Django and its standard configuration come with a single database by default. Often, when projects get large and complex, that …

Read more

Categories Django
Post navigation
Older posts
Page1 Page2 Page3 Next →

Recent Posts

  • How to use the Django create superuser command
  • How to use Django order_by?
  • Django Reverse URL – reverse() function
  • Django Redirect Explained
  • HttpResponse Django – HTTP Response Explained with Examples
  • Privacy Policy
  • Terms and Conditions
  • Contact
Copyright © 2023 ZeroToByte