私はdjangoのサイトを持っていて、基本的なビューと管理サイトを表示しています。
しかし、管理サイトにログインすると、モデルが表示されません:
これは私のmodels.pyです
from django.db import models
# Create your models here.
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Admin:
pass
class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice = models.CharField(max_length=200)
votes = models.IntegerField()
class Admin:
pass
私のdbスキームから管理者を参照しているので、
しかし、私の管理者にはこのテーブルが表示されません。
何が欠けている?
ありがとう!