table bank_app_bank has no column named DOB

2023-08-18 Thread meenu loranz
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)

Re: Road Map for a newbie

2023-08-18 Thread ASAMOAH EMMANUEL
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

Re: Road Map for a newbie

2023-08-18 Thread Mike Dewhirst
On 18/08/2023 10:59 am, Sebastian Jung wrote: Hello, At the beginning i read much tutorials about function based django. It is on beginning a little bit easier because you understand how a list-, create-/update- and deleteview works. For little project this approach is fine. I waste with