====== 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: * copy entry_detail.html to project's templates dir so we can modify it. This file will overwrite the original one in site-package. vfoss_env/lib/python2.7/site-packages/cmsplugin_blog/templates/cmsplugin_blog/entry_detail.html templates/cmsplugin_blog/ * Make a change in the file

{{ object.pub_date|date:"d F Y" }}

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 cmsplugin_blog_placeholder in settings.py 159 160 CMSPLUGIN_BLOG_PLACEHOLDERS = ('first', 'second', 'third') 161