Posts from Django

Add CSS and Static Files in Django

By Aditi Deo

Django is a framework based on Python that uses the model-view-template architecture to build web apps. In this tutorial, we will learn how to add static files such as images, java.... Read More

Constructor in Python

By Hussain Quadri

In this tutorial, we will learn about Constructor in Python. In Object-oriented Programming, a special kind of method is used to instantiate an object. It initializes values to the.... Read More

How to set upload file size limit in Django

By Khushi Aswani

This tutorial is based on limiting the uploading file size or restricting a limit to which we can store a large amount of data with less storage data. You might want to have a limi.... Read More

Django – Submit Form data with Post Method

By Shamik Lahiri

In this tutorial, we will be learning how to submit form data using POST in Django. Submitting forms is an important aspect of any website, be it customer reviews, contact pages or.... Read More

How to Lookup Dictionary Value with Key in Django Template

By Khushi Aswani

This tutorial is all about looking into a dictionary value using a key in Django Template. This task will be accomplished by creating a dictionary in the views.py file and then ren.... Read More

Extend Django User Model with custom Fields

By Khushi Aswani

This tutorial will be based on custom fields in Django, how to extend/customize the default fields. This is going to be a very interesting task, without any further waste of time, .... Read More

Upload file to a specific folder in Django

By Anand Jaiswal

In this tutorial, we will learn how to upload a file to a specific folder using Django. Steps to Follow: Create a project and start an app. Create a forms.py file in the app. Creat.... Read More

Create PDF file in Django Dynamically

By Anand Jaiswal

In this tutorial, we will learn how to create dynamic PDF in Django. Steps to follow: 1. Start your Django project. 2. Start your app inside the project named codespeedy. 3. Define.... Read More

Related Posts