Search Tutorials

The Tutorials in this series are created in Django 2.0 on Ubuntu 16.04. Django is a free and open-source web framework, written in Python. It is an amazing framework for web developers because it provides the infrastructure required for database-driven websites that have user authentication, content administration, contact forms, file uploads, and more. Django stands way out in front for ease of use and ability to allow a programmer to produce robust, secure, and bug free code quickly, very easy to switch database. Django offers a big collection of modules which you can use in your own projects. It is based on MVT (Model View Template) design pattern. The Model helps to handle database. The Template is a presentation layer which handles user interface part completely. The View is used to execute the business logic and interact with a model to carry data and renders a template. Django is designed in such a manner that it handles much of configure things automatically, so we can focus on application development only. It prefers conventions over configurations which means that it gives you a way of implementing some task and you have to stick to this method to implement it. You have less flexibility in that case but at the same time more secure and efficient because these conventions have been developed by thousands of active developers out there in the world. Read more


About 10 results found.
  1. Installation Sheet

Foss : Python Django - English

Outline: Getting started with Django Python Virtual Environment Create a Virtual Environment Activate the Virtual Environment pip command Install Django Update Django version Creat..

Basic

Foss : Python Django - English

Outline: Creating Django Models About Django App Djano Model Create a blog app Blog app directory structure Initialize a Django app Create a Django Model and Perform Database migra..

Basic

Foss : Python Django - English

Outline: How to Use Django Admin App Use Django admin app Create an admin user Django Admin interface Login to Django Admin interface Authentication and Authorization Registering Bl..

Basic

Foss : Python Django - English

Outline: Creating Views and Design URLs What is a view? Create a Django view Http Request object HttpResponse class django.urls modules Create a URL routing scheme path function C..

Basic

Foss : Python Django - English

Outline: Creating HTML Template in Django Create templates folder Create a Django template Use Django HTML template Django templates system Template tags Template variables Templat..

Basic

Foss : Python Django - English

Outline: Django Shell and Django Database Query About Django Shell Access Django shell Create a Django Query Create Blog Instance via shell Assign value to the blog instance Timezon..

Basic

Foss : Python Django - English

Outline: Creating Forms in Django * HTML Forms * Create a Django form * Django inbuilt libraries * Create views to handle form submission * CSRF - Cross Site Request Forgery Protec..

Basic

Foss : Python Django - English

Outline: Using CSS and JavaScript in Django * About CSS * About JavaScript * Django Static files * Load static files * Django Static template tag * Create CSS and JavaScript files ..

Basic

Foss : Python Django - English

Outline: Django Authentication * Django Authentication and Authorization system * Verify user credentials * Define user actions * Create a login functionality * Create a logout func..

Basic

Foss : Python Django - English

Outline: Testing in Django * Django Automated testing * Unit test model * Write tests in Django * TestCase class * Run the tests in Django * Run specific tests * Assertion methods ..

Basic