博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Django CMS 插件 – 添加博客专题
阅读量:5281 次
发布时间:2019-06-14

本文共 7091 字,大约阅读时间需要 23 分钟。

[转] http://www.codingsoho.com/zh/blog/djangocms-plugin-integrate-serail-app/

前言

前面已经介绍了如何使用djangoCMS来搭建一个博客系统,具体效果可参考www.codingsoho.com, 但是最近使用的时候碰到一个问题就是如果某个专题的文章很多的话,仅仅靠分类功能并不能满足,所以打算来加一个简单的专题功能。

创建专题功能应用

首先跟普通的工程一样我们先实现一个专题应用,然后下一步再把它集成到djangoCMS中去。

创建应用

创建应用serials

python manage.py startapp serials

创建module

创建module文件,我们需要两个model: serial和entry

serial代表专题连载,entry是专题里的各篇文章,这个文章对应于我们要呈现的blog,当然也包含了一些其他用于专题显示的字段。具体内容如下

class Serial(models.Model):    title = models.CharField(_('title'), max_length=150, blank=False, null=False)    abstract = models.TextField(_('abstract'), max_length=500, blank=True, null=True)    image = models.ImageField(_('image'), upload_to="upload/serial/", blank=True, null=True)    order = models.IntegerField(_("order"), blank=True, null=True, default=-1)    active = models.BooleanField(_("active"), default=False)    timestamp = models.DateTimeField(auto_now_add=True, auto_now=False)    updated = models.DateTimeField(auto_now_add=False, auto_now=True)    def __unicode__(self):        return self.title    def get_absolute_url(self):        return reverse("serial_detail", kwargs={"pk":self.pk})    class Meta:        verbose_name = _("Serial")        verbose_name_plural = _("Serial")        ordering = ['order', '-updated']

简单介绍一下这几个字段

  • title – 专题的标题
  • abstract – 专题摘要, 这是对专题的一些概况性描述
  • image – 跟专题相关的图片,用于显示
  • order – 用于排序
  • active – 控制是否显示,前端只显示处于激活状态下的连载内容
  • timestamp – 创建时间,该字段默认更新
  • updated – 更新时间,该字段自动赋值

Meta里的ordering设置为['order', '-updated'],这样就能按照我们指定的顺序显示

class Entry(models.Model):    serial = models.ForeignKey(Serial, verbose_name = _("serial"), blank=False, null=False)    title = models.CharField(_('title'), max_length=150, blank=False, null=False)    url = models.URLField(_('url'), max_length=100, blank=False, null=False)    image = models.ImageField(_('image'), upload_to="upload/serial/", blank=True, null=True)    order = models.IntegerField(_("order"), blank=True, null=True, default=-1)    active = models.BooleanField(_("active"), default=False)    timestamp = models.DateTimeField(auto_now_add=True, auto_now=False)    updated = models.DateTimeField(auto_now_add=False, auto_now=True)

entry model里,对url这个字段简单介绍一下,这个就是对应的博客的链接,不是相对路径。这个跟评论的关联有点类似,当然将来这种专题可以扩展到不仅仅针对博客,也可以针对视频或者其他内容

执行makemigrations和migrate生成数据表

实现专题列表视图

我们需要实现两个视图,显示所有专题的视图以及访问某个专题时的对应显示。Django强大的class-based-view模块提供了实现该功能的基本方法

首先列表视图,导入django.views.generic.list里的ListView,这儿我只写了一个最简单的实现,指定queryset和模板名字。

在queryset里,针对对象做了过滤,只提取了active的对象,便于后面对内容发布进行控制。

模板存放位置在template_name里指定,如果你用系统指定的路径和名字,该变量可以不赋值。

from .models import *from django.views.generic.list import ListViewclass SerialListView(ListView):    queryset = Serial.objects.filter(active=True)    template_name = "serials_list.html"

添加文件template/serias_list.html

{% extends "serials_base.html" %}{% load i18n %}{% block content %}        {% for obj in object_list %}            {% include "serial_list_content.html" with object=obj show_entry_list=False %}            
{% if not forloop.last %}

{% endif %} {% endfor %}{% endblock %}

内容显示放在了模板文件serial_list_content.html里,因为后面显示详情了还会用到

{ {object.title}}

{

{object.abstract}}

给这个视图添加URL

创建serials/urls.py

from .views import (    SerialListView, )urlpatterns = [    url(r'^$', SerialListView.as_view(), name='serial_list'), ]

更新项目urls.py

urlpatterns += i18n_patterns(    url(r'^course/', include('serials.urls')),     url(r'^', include('cms.urls')),)

注意:把course对应的URL一定要放在cms.url前面,否则cms会处理所有前面没处理的模式pattern。

添加专题内容

内容添加在后台完成,添加下面的代码来支持serial和entry的添加。

from .models import Serial, Entryclass EntryInline(admin.TabularInline):    model = Entry    extra = 1    max_num = 50class SerialAdmin(admin.ModelAdmin):    inlines = [        EntryInline,    ]class EntryAdmin(admin.ModelAdmin):    passadmin.site.register(Serial, SerialAdmin)admin.site.register(Entry, EntryAdmin)

在admin添加对应的serial和entry。

这个时访问http://127.0.0.1:8000/zh/course/,就可以看到如下的效果

djangocms-plugin-interation-serail-app-1.png

实现专题详情视图

上面列出了所有的专题内容,点开某个专题时应该会列出该专题所有的博客文章,接下来我们来实现它

在views.py添加

from django.views.generic.detail import DetailViewclass SerialDetailView(DetailView):    queryset = Serial.objects.all()    template_name = "serials_detail.html"     def get_context_data(self, *args, **kwargs):        context = super(SerialDetailView, self).get_context_data(*args, **kwargs)         context["object_list"] = Entry.objects.filter(serial__pk=self.get_object().pk, active=True)        return context

实现模板serials_detail.html,

{% extends "serials_base.html" %}{% block content %}{% include "serial_list_content.html" with show_entry_list=True %} {% endblock %}

详情视图里我们继续包含serial_list_content的内容,这部分和列表页是一样的,另外,我们还要添加entries列表,代码如下

{% if show_entry_list %}    
{% for item in object.entry_set.all %}

{
{item.title}}

{% endfor %}
{% endif %}

添加对应的URL

from .views import (    SerialDetailView,)urlpatterns = [    url(r'^(?P
\d+)', SerialDetailView.as_view(), name='serial_detail'), ]

访问http://127.0.0.1:8000/zh/course/1,效果如下

djangocms-plugin-interation-serail-app-2.png

CMS插件集成应用

接下来进入到本文的重点,如何将上面的应用集成到djangoCMS里。

我是参考下面教程完成的

  • http://docs.django-cms.org/en/latest/introduction/plugins.html#plugins
  • tutorial
    -http://docs.django-cms.org/en/latest/introduction/integrating_applications.html

教程里额外建了个应用来处理插件,为了简化,我还是在原来的应用里完成了插件实现。

Plugin Model

在models.py里添加下面代码

from django.db import modelsfrom cms.models import CMSPluginfrom serials.models import Serialclass SerialPluginModel(CMSPlugin):    serial = models.ForeignKey(Serial)    def __unicode__(self):        return self.serial.title

注意:CMS plugin都是从CMSPlugin继承来的,不是从models.Model

Plugin Class

在models.py同级目录创建文件cms_plugin.py,这个plugin类负责向CMS提供相应的信息来渲染你的plugin

代码实现如下

from cms.plugin_base import CMSPluginBasefrom cms.plugin_pool import plugin_poolfrom .models import SerialPluginModelfrom django.utils.translation import ugettext as _@plugin_pool.register_plugin # register the pluginclass SerialPluginPublisher(CMSPluginBase):    model = SerialPluginModel # model where plugin data are saved    module = _("serials")    name = _("Serial Plugin") # name of the plugin in the interface    render_template = "plugin/serial_plugin.html"    def render(self, context, instance, placeholder):        context.update({'instance': instance})        return context

注意:plugin类必须从CMSPluginBase继承,并且在plugin_pool注册

模板

需要在plugin类里对属性render_template进行赋值,plugin将用这个模板渲染

内容如下

{% include "serial_list_content.html" with show_entry_list=True object=instance.serial %}

这个就是前面我们前面详情视图的内容,只保留了内容部分。

集成应用

至此,该应用到CMS的集成已完成。如果你用额外的应用来实现plugin的话,还需要将它添加到settings.py里。

再次添加插件时,可以看到serial已经在其中了。

djangocms-plugin-interation-serail-app-3.png

点击Serial Plugin,可以在下面页面中选到我们前面添加的专题内容。

djangocms-plugin-interation-serail-app-4.png

最终呈现效果

djangocms-plugin-interation-serail-app-5.png

转载于:https://www.cnblogs.com/2dogslife/p/9440780.html

你可能感兴趣的文章
会声会影毛玻璃制作
查看>>
HDU 2665 Kth number
查看>>
CodeChef DGCD Dynamic GCD
查看>>
记叙在人生路上对你影响最大的三位老师
查看>>
002.大数据第二天
查看>>
python装饰器
查看>>
树上的路径
查看>>
【转载】TCP好文
查看>>
系统平均负载
查看>>
问题总结
查看>>
jenkins升级为2.134
查看>>
软件随笔
查看>>
C/C++知识补充 (1)
查看>>
Fast Poisson Disk Sampling
查看>>
Python Cookbook(第3版)中文版:15.14 传递Unicode字符串给C函数库
查看>>
Linux下SVN自动更新web [转]
查看>>
编程:对经验世界的析构与建构
查看>>
Openstack api 学习文档 & restclient使用文档
查看>>
vim linux下查找显示^M并且删除
查看>>
poj100纪念
查看>>