How To Install Apache Django Postgresql on Ubuntu 16.04 Part3
This one will be short and will be about keeping our sensitive data in a secure place instead of settings.py.…
This one will be short and will be about keeping our sensitive data in a secure place instead of settings.py.…
By using base template, we can ensure a standard look in the project and get rid of typing duplicate HTML…
In this Post, we will add user authentication functionality for our Django application. We need to have a url, view…
In this post, we will actually implement 3 different things including User Registration, User Profile Edit and User Password Reset.…
Go ahead and create a few tasks from admin panel first. Import Task model to views.py from crmapp.models import Task…
django-crispy-forms is a Django application that lets you easily build, customize and reuse forms using your favorite CSS framework, without…
It is recommended to extend the existing user model every time we start a new project. Even if we think…
I am going to create an app named crmapp. First I change the directory to cd CRM source v_env/bin/activate cd…
You can follow the steps below to install VSCode on Ubuntu: sudo apt update sudo apt install software-properties-common apt-transport-https wget…
In Django, generally each model maps to a single database table. Django gives us an automatically-generated database-access API. We use models.py file…