Python Django search with dropdown filter

search with a dropdown filter in python django

In this Python Django tutorial, I will explain how to search with a dropdown filter in Django in simple steps. Recently, I have been creating a website using the Django framework. And I needed a dropdown menu to search for employees on specific criteria. Here we will see: At the end of this article, you can also … Read more…

How to add dropdown navbar in Django

add navbar template for blog categories using django

In this Python Django tutorial, I will explain how to add dropdown navbar in Django in simple steps. Recently, I have been creating a website for PythonGuides using the Django framework. And I needed a navigation bar with a dropdown menu to add blog categories. So, I have done some research and added a navbar with a … Read more…

How to create a function-based view in Django

create a function-based view to create a record in Django

In this Python Django tutorial, I will explain how to create a function-based view in Django in simple steps. The view is a function that takes web requests and returns web responses. So, while working on any Django project we always need a view as it contains the main logic. So, here we will see: … Read more…

How to create web form in Python Django

working with python django forms

In this Python Django tutorial, I will explain working with Django forms. As a Python Django developer, while working on a Django project I got a requirement of gathering information from the users. So, I have done the research and discovered that we can create web form in Python Django. Here we will see: At … Read more…

How to build a contact form in Django using bootstrap

how to build a contact form in Django using bootstrap

Recently, I got one requirement to create a contact form in Django and save the data to a database. And here, I will explain step by step how to build a contact form in Django using bootstrap. I’m currently working on a Django project for a project builder website where a bootstrap contact form is … Read more…

How to Delete Schema from Python Django

delete schema from python django

In this Python Django tutorial, I will explain how to delete schema from Python Django step by step. Recently, I have been working on a Django e-cart project, and I mistakenly constructed a department schema. So now, I decided to remove this schema from your Django project. Here we will see: I found that the … Read more…

How to create form with Django Crispy Forms

create form with Django Crispy Forms

In this Python Django tutorial, I will explain how to create form with Django Crispy Forms step by step. Recently, I have been working on a contact form using bootstrap and I have found that it requires dozen of lines of code and takes a lot of effort, so I have done some research and … Read more…

How to add Google reCAPTCHA to Django Form

how to add google recaptcha to django form

In this Python Django tutorial, I will explain how to add Google reCAPTCHA to Django Forms step by step. As a Python Django Developer, while working on Django Forms I want to safeguard it from spam, bots, and DDoS attacks. So, I searched for it and found that reCAPTCHA is one of the finest solutions for … Read more…

Django contact form with class based views

django contact form with class based views

In this Python Django tutorial, I will explain how to create a Django contact form with class-based views. While working on a contact form, I just learned that creating a contact form using function-based views takes dozens of lines of code and a lot of work and time. So, after doing some research, I learned … Read more…

Simple Contact Form for website in Python Django

python django contact form

In this Python Django tutorial, I will explain how to build simple contact form for website in Python Django step by step. Recently, I have been creating a website for PythonGuides using the Django framework. And I have found that it requires a contact form for communication with the website workers. So, I have done some … Read more…