我按照这里的指示
http://django-blog-zinnia.readthedocs.org/en/latest/how-to/extending_entry_model.html
不幸的是我无法延长。 首先奇怪的是 - 我必须改变导入模块的导入方式:
这
from zinnia.models.entry import Entry
from zinnia.admin.entry import EntryAdmin
到
from zinnia.models import Entry
from zinnia.admin import EntryAdmin
更改后,我然后运行服务器并转到管理页面,但后来我收到了这个错误。
'RatingAdmin.fieldsets[0][1]['fields']' refers to field 'rating' that is missing from the form.
这是我的代码admin.py
from django.contrib import admin
from django.utils.translation import ugettext_lazy as _
from zinnia.models import Entry
from zinnia.admin import EntryAdmin
class RatingAdmin(EntryAdmin):
# into the 'Content' fieldset
fieldsets = ((_('Content'), {'fields': (
'title', 'content', 'image', 'status', 'rating')}),) + \
EntryAdmin.fieldsets[1:]
# Unregister the default EntryAdmin
# then register the EntryGalleryAdmin class
admin.site.unregister(Entry)
admin.site.register(Entry, RatingAdmin)
这是我的抽象类模型happy_models.py
from django.db import models
from zinnia.models.entry import EntryAbstractClass
class Happy(models.Model):
rating = models.CharField(max_length=200)
def __unicode__(self):
return u'Rating %s' % self.title
class Meta(EntryAbstractClass.Meta):
abstract = True
这是我在settings.py
中的百日草入门基本模型路径ZINNIA_ENTRY_BASE_MODEL = 'happy.happy_models.Happy'
我刚刚在我的控制台注意到这一点
/zinnia/models.py:302: RuntimeWarning: happy.happy_models.Happy cannot be imported
这是我的目录设置
happy/
admin.py
happy_models.py
views.py
扩展条目时我可能做错了什么?
答案 0 :(得分:4)
我认为你跳过了两个部分:
请注意您的应用扩展程序的结构,我通常会使用以下内容:
/zinna_extras
__init__.py
entry_plus.py <---- This is where your model that extends EntryAbstractClass goes
admin.py <--- You got this part right above
views.py <--- blank
migrations/ <--- all original zinnia migrations + what you need for your model (see below)
注意,没有models.py文件。这搞砸了百日草的进口风格。
如果您使用South迁移,您还可能需要在settings.py中设置以下内容:
SOUTH_MIGRATION_MODULES = {
'zinnia': 'zinnia_extras.migrations.zinnia',
}
将所有原始百日草迁移复制到zinnia_extra应用程序的迁移文件夹中,然后创建模型所需的任何新迁移。这只是告诉南方使用你的应用程序作为百日草迁移的来源,而不是通常的百日草应用程序。
答案 1 :(得分:1)
我终于发现 - 通过在交互模式下运行服务器,我能够进行调试。必须将示例代码修改为: -
from zinnia.models import EntryAbstractClass
而不是
from zinnia.models.entry import EntryAbstractClass