Django

Python - Django Templating and Includes

Submitted by nurhodelta_17 on
This tutorial tackles about templating and includes. Templating and including is done so that you wont have to repeat a certain html lines again and again if you wanted to have same result in several html pages. For example, 2 pages of your site have the same header. Instead of creating 2 headers for both pages, you just need to create a header file and include it to both pages.

Python - Simple Registration & Login Form With Django

Submitted by razormist on
In this tutorial we will create a Simple Registration & Login Form With Django. Django is a free and open source web application framework, written in Python. A web framework is a set of components that helps you to develop websites faster and easier. Django makes developers life convenient and productive framework to all.

Python - Simple CRUD With Django Framework

Submitted by razormist on
In this tutorial we will create a Simple CRUD With Django Framework. Django is an advanced Web framework written in Python that makes use of the model view controller (MVC) architectural pattern. The official project site describes Django as "a high-level Python Web framework that encourages rapid development and clean, pragmatic design.