FeinCMS内容类型的文章列表

时间:2015-10-16 18:20:58

标签: django templates feincms

我的任务是获得一份文章清单。本文来自一个简单的FeinCMS ContentType。

class Article(models.Model):
       image = models.ForeignKey(MediaFile, blank=True, null=True, help_text=_('Image'), related_name='+',)
       content = models.TextField(blank=True, help_text=_('HTML Content'))
       style = models.CharField(
                    _('template'),max_length=10, choices=(
                            ('default', _('col-sm-7 Image left and col-sm-5 Content ')),
                            ('fiftyfifty', _('50 Image left and 50 Content ')),
                            ('around', _('small Image left and Content around')),
                            ),
                            default='default')
        class Meta:
                abstract = True
                verbose_name = u'Article'
                verbose_name_plural = u'Articles'

        def render(self, **kwargs):
                return render_to_string('content/articles/%s.html' % self.style,{'content': self,})

我想在不同的子页面中使用它。

现在,在主页面上获取所有发音列表的列表会很棒(我的项目 - > project1,project2,project3的列表)。

类似:Article.objects.all() 模板:

{% for entry in article %}
    {% if content.parent_id == entry.parent_id %} #only projects
        <p>{{ entry.content|truncatechars:180 }}</p>
    {% endif %}
{% endfor %}  

但我收到错误&#34;输入对象&#39; Articels&#39;没有属性&#39;对象&#39; ... 你有一个聪明的主意吗?使用Feincms ContentType会是等级。

1 个答案:

答案 0 :(得分:0)

FeinCMS内容类型为abstract,这意味着没有数据,也没有与之关联的数据库表。因此,没有objects经理,也无法查询。

在执行Page.create_content_type()时,FeinCMS采用内容类型和相应的Page类,并创建一个包含实际数据的(非抽象)模型。要访问新的具体模型,您需要使用content_type_for。换句话说,您正在寻找:

from feincms.module.page.models import Page
PageArticle = Page.content_type_for(Article)
articles = PageArticle.objects.all()