On Sun, May 3, 2020 at 7:34 AM Vikram Jaiswal < [email protected]> wrote:
> I am not able to see the form on admin page to add the data > First > -First > -settings.py > -urls.py > -travello > -migrations > -urls.py > -models.py > -admin.py > > here is the models.py > from django.db import models > > # Create your models here. > class Destination(models.Model): > #id : int > name : models.CharField(max_length=100)#str > img : models.ImageField(upload_to='pics')#str > desc : models.CharField(max_length=100)#str > price : models.IntegerField()#int > offer : models.BooleanField(default=False)#bool > > > here is the admin.py > from django.contrib import admin > from travello.models import Destination > > > > > # Register your models here. > admin.site.register(Destination) > > Please help! > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/6f1d4cad-2d83-454d-b49b-7eaaef5b0ea8%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/6f1d4cad-2d83-454d-b49b-7eaaef5b0ea8%40googlegroups.com?utm_medium=email&utm_source=footer> > . > This is related to your previous post. The fields aren't showing up, and they won't until they are properly defined and the database migration is done. -Jorge -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CANfN%3DK9NwDKE8o0zcJMatAZpCYBm5WvDLgZbuxZFxfw4LZPu2A%40mail.gmail.com.

