About Author
[email protected]
Posts By [email protected]
Add multiple forms in a page in Django
Last updated on 12th June 2021 by [email protected] | Category: Django Tutorial
We often need to add more than one form in a webpage of our Django website. This requirement arises in a lot of situations. There might be a comment form and a feedback form on our page. There could be many more situations where we need to add multiple forms to our page in Django. […]
Adding a Social Share button to your django website
Last updated on 10th June 2021 by [email protected] | Category: Uncategorised
Adding a Social Share button to your Django website. The statement is pretty straight forward isn’t it? In this tutorial we’ll learn about how to add a share button to our Django website. This is pretty short tutorial. But trust me, You’ll definitey learn from this. Let’s get started right away! Project Setup First things […]
How to Add Pagination in Django Website
Last updated on 10th June 2021 by [email protected] | Category: Uncategorised
Pagination is the most basic and important of any website. Pagination greatly improves the user experience. With pagination, user can escape from scrolling the long list of contents. In this tutorial, we’ll learn how to add pagination to our Django website. And doing this in Django is very easy (I promise!). Ready to start? Project […]
Upload Multiple Images in Django
Last updated on 5th August 2022 by [email protected] | Category: Django Tutorial
There would be many situations where we are in need of uploading multiple images. Django, though doesn’t provide this facility out-of-the-box, we still can do this with a simple modification. So, in this tutorial we’ll learn how to upload multiple images (Can be files too!) at a time in Django. Project Setup Let’s make a […]
How to Add reCAPTCHA to a Django Website
Last updated on 10th June 2021 by [email protected] | Category: Django Tutorial
Ever wondered how to add a captcha field in your Django forms? I’ll show you how to do this! Captchas are a great way to secure your site from spamming, or bot attacks. So, adding a captcha field to your authentication forms are a great way to enhance your site’s UX. Let’s get started. Make […]
Render HTML as-you-type with Django and AJAX
Last updated on 5th August 2022 by [email protected] | Category: Django Tutorial
What exactly are we going to do? In this tutorial, we’ll be building a simple text editor-like application that renders the text as-you-type with Django and AJAX. This will be able to trigger the HTML tags and render them alongside (Words between <h1> and </h1> tags would be bold and large, Words between <i> and […]
Migrate data from SQlite to PostgreSQL in Django
Last updated on 5th August 2022 by [email protected] | Category: Django Tutorial
SQlite is a quick and and easy way to start with. As it has nothing to configure. We simply can use it in our Django projects. But, as the project gets bigger, we understand the necessity to move a standard databases like MySQL or PostgreSQL. But we have some data in our database right? If […]