Django Unleashed Framework
1.46K subscribers
2.17K photos
2.59K links
Лучшие материалы по разработке на фреймворке Django на русском и английском языке

Разместить рекламу: @tproger_sales_bot

Правила общения: https://tprg.ru/rules

Другие каналы: @tproger_channels

Другие наши проекты: https://tprg.ru/media
Download Telegram
Implement Autocompletion in Django

Hello pals,
In this blog, I'll show you how to add autocomplete to the Django admin interface. I chose the admin interface because it lets me create, read, update, and delete (CREATE, READ, UPDATE, DELETE) models.
For implementing the auto completion...

Read: https://pythonislove.com/implement-autocompletion-in-django
Style Django Admin with Jazzmin

Hello Geeks, First of all, I would like to thank you for reaching here. You will undoubtedly be a successful Django developer in the future.
Introduction
In this blog, I am guiding to integrate django-jazzmin theme to the Django project. According to...

Read: https://pythonislove.com/style-django-admin-with-jazzmin
1
How to deploy a Django application

Introduction
If you are looking for a guide to deploying a Django application to production, then you are at the right place. This guide assumes that you have a working Django application. You can check if your application is healthy by running this ...

Read: https://blog.lokesh1729.com/how-to-deploy-a-django-application
Ищем человека, который будет строить сообщество по темам Python / Data Science / AI в Tproger

Если вы довольно неплохо разбираетесь в этих темах и при этом видите в себе желание рассказывать об этом другим разработчикам и вовлекать их в горячие обсуждения — возможно, это именно ваша вакансия.

Подробности, тестовое задание и отклик здесь: https://tprg.ru/GEZL
Developing an Inventory management system with Django and bootstrap.

Introduction.
A full working project code is hosted on this repository
Inventory => Inventory, also known as stock, refers to goods a business owns, with the aim to sell or use them in production.
Inventory management system => Inventory management ...

Read: https://mwass.hashnode.dev/developing-an-inventory-management-system-with-django-and-bootstrap
Building Custom User In Django

This post explains step-by-step how to create a custom User model in Django.
Objectives
By the end of this article, you should be able to:

Describe the difference between AbstractUser and AbstractBaseUser

Explain why you should set up a custom User...

Read: https://blogwithgajanan.hashnode.dev/building-custom-user-in-django
👍1
Creating Templates for Authentication

Overview
In this blog post, we will be creating templates for our authentication system. We will be creating a base template that will contain the common elements of all the templates and then we will create other templates which inherit from the bas...

Read: https://rishabhdev.hashnode.dev/creating-templates-for-authentication
👍1
Django Static Files

When we develop a web application we also need a way to use and serve static contents like (JS,CSS, and images ...)
In Django, any assets which are required for project development can be called static files. Some examples are:

JS files

CSS files

...

Read: https://djangotherightway.com/django-static-files
Encrypting a Django Rest Framework Response

Introduction
Encryption is the process data goes through to get transformed from a readable format(plaintext) to an unreadable format(ciphertext). After encryption, the ciphertext appears to be unreadable random data and anyone attempting to read the...

Read: https://charless.hashnode.dev/django-rest-framework-response-encryption
👍1
Django Rest Framework

UpDRF is a library which allows you to build APIs in your Django project.
How to install Django
Run,pip install Django
Starting a new project
Django-admin startproject drf
Installing Django rest Framework
Pip install Django Rest Framework
Create a ne...

Read: https://masiza.hashnode.dev/django-rest-framework
Creating your own Stock Market Heatmap using Django

In the world of finance, the ability to visualize market data can be a powerful tool for investors and traders. One popular way of representing financial data is through a heatmap, which can easily display large amounts of information in a visual for...

Read: https://manusrao.hashnode.dev/creating-your-own-stock-market-heatmap-using-django
Django for Beginners #1

Download source code here. ⬅️

Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...

Read: https://huericnan.hashnode.dev/django-for-beginners-1
Django for Beginners #2

Download source code here. ⬅️

Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...

Read: https://huericnan.hashnode.dev/django-for-beginners-2
Django for Beginners #3

Download source code here. ⬅️

We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...

Read: https://huericnan.hashnode.dev/django-for-beginners-3
Django for Beginners #4

Download source code here. ⬅️

Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...

Read: https://huericnan.hashnode.dev/django-for-beginners-4
Django for Beginners #5

Download source code here. ⬅️

In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django

When you add more and more posts to...

Read: https://huericnan.hashnode.dev/django-for-beginners-5
Django for Beginners #1 - Getting Started

Download source code here. ⬅️

Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...

Read: https://huericnan.hashnode.dev/django-for-beginners-1-getting-started
Django for Beginners #2 - The MTV Structure

Download source code here. ⬅️

Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...

Read: https://huericnan.hashnode.dev/django-for-beginners-2-the-mtv-structure
Django for Beginners #3 - The CRUD Operations

Download source code here. ⬅️

We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...

Read: https://huericnan.hashnode.dev/django-for-beginners-3-the-crud-operations
Django for Beginners #4 - The Blog App

Download source code here. ⬅️

Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...

Read: https://huericnan.hashnode.dev/django-for-beginners-4-the-blog-app
Django for Beginners #5 - Some Advanced Features

Download source code here. ⬅️

In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django

When you add more and more posts to...

Read: https://huericnan.hashnode.dev/django-for-beginners-5-some-advanced-features