Table of Contents

Installing cmsplugin-blog

http://readthedocs.org/docs/django-cms/en/latest/

Problem and solution

Blog content is not shown

Blog content doesn't display.

Solution:

 <p class="date"><span>{{ object.pub_date|date:"d F Y" }}</span></p>
 12 
 13 {# with object.placeholders|choose_placeholder:"content" as content #}  <-- old
 13 {% with object.placeholders|choose_placeholder:"first" as content %}  <-- new 
 14     {% render_placeholder content %}
 15 {% endwith %}

'first' is configured as cmspluginblogplaceholder in settings.py

159 
160 CMSPLUGIN_BLOG_PLACEHOLDERS = ('first', 'second', 'third')
161