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 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.
No comments:
Post a Comment