do lots of projects and refer to the documentation when you need to
understand concepts in detail. Here is my private channel where I upload
django premium resources with ton of projects. here is the invite link if
you want to avoid the frustration of finding organized tutorials and hands
on to try
from django.contrib.auth.models import User
from django.db import models
from django.urls import reverse
# Create your models here.
class bank(models.Model):
name = models.CharField(max_length=255)
DOB = models.DateField()
age = models.IntegerField()
gender = models.CharField(max_length=10)
phone_
2 matches
Mail list logo