On Sun, May 3, 2020 at 7:34 AM Vikram Jaiswal <vikramkumarjaiswal221998@gmail.com> wrote:
--I am not able to see the form on admin page to add the dataFirst-First-settings.py-urls.py-travello-migrations-urls.py-models.py-admin.pyhere is the models.pyfrom django.db import models# Create your models here.class Destination(models.Model):#id : intname : models.CharField(max_length=100)#strimg : models.ImageField(upload_to='pics')#strdesc : models.CharField(max_length=100)#strprice : models.IntegerField()#intoffer : models.BooleanField(default=False)#boolhere is the admin.pyfrom django.contrib import adminfrom 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 django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6f1d4cad-2d83-454d-b49b-7eaaef5b0ea8%40googlegroups.com.
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 django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CANfN%3DK9NwDKE8o0zcJMatAZpCYBm5WvDLgZbuxZFxfw4LZPu2A%40mail.gmail.com.
No comments:
Post a Comment