Form is not getting displayed on django admin page

2020-05-03 Thread Vikram Jaiswal
above is the image of the error admin.py from django.contrib import admin from travello.models import Destination class ContactAdmin(admin.ModelAdmin): Clist_display = [ 'name', 'department', 'lalal'] # Register your models here. admin.site.register(Destination,ContactAdmin) models.py from dja

Form not visible on the add page

2020-05-03 Thread Vikram Jaiswal
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