Ath Tripathi has Published 78 Articles

Django – Admin based File Management

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 13:00:16

592 Views

We usually make file or image related changes from the frontend. In this article, we will see how to make file management at Admin panel where we can manage different types of file that we are going to render from server to client.ExampleInstall the django-filer module −pip install django-filerIn settings.py, ... Read More

Creating a screenshot taking website in Django

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:55:43

644 Views

In this article, we will see how to create a screenshot taking website in Django. This website will basically take the screenshot of our screen whenever we click "take screenshot". It then will store the screenshot in our media folder and we can view it whenever we want.ExampleSo let's start ... Read More

Client side image zooming and rotating in Django

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:50:15

474 Views

Sometimes, we may need to rotate an image or zoom it. In such cases, a client-side image zooming library is used to add jquery feature of zooming-rotating on html file. We just needed to load jquery js and css in html file.Create a Django project and an app. Setup urls ... Read More

Adding translation to a model instance in Django

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:44:25

202 Views

In this article, we are going to learn how to create a translation for any instance. Sometimes, you may need to save data like ID, names, quotes, lines, etc. You may have to render that data in different languages; for that, you need to do a lot of database stuff, ... Read More

How to add a Money field in Django?

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:37:19

2K+ Views

Sometimes, we may have to add money-related data in a website, like salary, fees or income. Django provides an integer field but many a time, it doesn't work like we want. So, for handling money field, we can use a third-package library that will add the money field to our ... Read More

Adding JSON field in Django models

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:33:02

14K+ Views

In this article, we will see how to add JSON fields to our Django models. JSON is a simple format to store data in key and value format. It is written in curly braces. Many a time, on developer website, we need to add developer data and JSON fields are ... Read More

How to add extra security to Django admin using fake admin login?

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:31:17

273 Views

We are going to make a Django admin fake login page using a thirdparty package. This will just create a Django admin fake page, and whenever anyone tries to login on the admin page, whether they enter the right or wrong password, they will not be able to login and ... Read More

How to add Django debug toolbar to your project?

Ath Tripathi

Ath Tripathi

Updated on 25-Aug-2021 12:18:58

3K+ Views

Django toolbox is a debugging tool that is used to debug database queries, Django website loading speed, and many other things. Debug toolbar is very popular among developers and everyone is using it. So, let's dive into to see how to implement it.ExampleCreate an app with the name "myapp".First, install ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements